aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/CallTip.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-08-31 08:21:38 +1000
committerNeil <nyamatongwe@gmail.com>2021-08-31 08:21:38 +1000
commit17113ca41a020a6c37d3bd859201bf716b3c6b7a (patch)
tree28a0ea64abf513def8987bc033040bebdd05b8d7 /src/CallTip.cxx
parent808b30f6d4b7acb5c9b8b649f315e972df5a8cff (diff)
downloadscintilla-mirror-17113ca41a020a6c37d3bd859201bf716b3c6b7a.tar.gz
Make Cancel methods noexcept as they may need to be used in destructors.
Diffstat (limited to 'src/CallTip.cxx')
-rw-r--r--src/CallTip.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CallTip.cxx b/src/CallTip.cxx
index 43afead55..9fb1b535c 100644
--- a/src/CallTip.cxx
+++ b/src/CallTip.cxx
@@ -313,7 +313,7 @@ PRectangle CallTip::CallTipStart(Sci::Position pos, Point pt, int textHeight, co
}
}
-void CallTip::CallTipCancel() {
+void CallTip::CallTipCancel() noexcept {
inCallTipMode = false;
if (wCallTip.Created()) {
wCallTip.Destroy();