diff options
author | Neil <nyamatongwe@gmail.com> | 2024-05-07 11:59:23 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2024-05-07 11:59:23 +1000 |
commit | b9e09f34badc402f80a4a53c507576affd97b8bc (patch) | |
tree | 5ece63ef3d90b3bf10e89ccc1a9c2c96b98795f5 /qt/ScintillaEditBase | |
parent | d61d88dbd8e5d8a12cd488c9437c5aa9ebcc0471 (diff) | |
download | scintilla-mirror-b9e09f34badc402f80a4a53c507576affd97b8bc.tar.gz |
Update suppressions for cppcheck 2.14.
Mark SurfaceImpl destructor as override to avoid cppcheck warning.
Diffstat (limited to 'qt/ScintillaEditBase')
-rw-r--r-- | qt/ScintillaEditBase/PlatQt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt/ScintillaEditBase/PlatQt.h b/qt/ScintillaEditBase/PlatQt.h index a7c405156..abb855270 100644 --- a/qt/ScintillaEditBase/PlatQt.h +++ b/qt/ScintillaEditBase/PlatQt.h @@ -83,7 +83,7 @@ private: public: SurfaceImpl(); SurfaceImpl(int width, int height, SurfaceMode mode_); - virtual ~SurfaceImpl(); + virtual ~SurfaceImpl() override; void Init(WindowID wid) override; void Init(SurfaceID sid, WindowID wid) override; |