aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk/PlatGTK.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-10-12 12:01:49 +1100
committerNeil <nyamatongwe@gmail.com>2021-10-12 12:01:49 +1100
commitb4fd2631f64008179d7e7a7e5d9194a08f30a66b (patch)
tree235a67c2fb6a075571bef1ef20ec2390e41681e8 /gtk/PlatGTK.cxx
parent40e479ba4f68d442fe0552c2551422e884085cdd (diff)
downloadscintilla-mirror-b4fd2631f64008179d7e7a7e5d9194a08f30a66b.tar.gz
Feature [feature-requests:#1416] Mark override destructors as override.
Diffstat (limited to 'gtk/PlatGTK.cxx')
-rwxr-xr-xgtk/PlatGTK.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx
index 4beb1c418..770334a92 100755
--- a/gtk/PlatGTK.cxx
+++ b/gtk/PlatGTK.cxx
@@ -114,7 +114,7 @@ public:
FontHandle(FontHandle &&) = delete;
FontHandle &operator=(const FontHandle &) = delete;
FontHandle &operator=(FontHandle &&) = delete;
- ~FontHandle() {
+ ~FontHandle() override {
if (pfd)
pango_font_description_free(pfd);
pfd = nullptr;