diff options
Diffstat (limited to 'qt/ScintillaEdit/ScintillaDocument.cpp')
-rw-r--r-- | qt/ScintillaEdit/ScintillaDocument.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/qt/ScintillaEdit/ScintillaDocument.cpp b/qt/ScintillaEdit/ScintillaDocument.cpp index 8d50eabdb..251a5e557 100644 --- a/qt/ScintillaEdit/ScintillaDocument.cpp +++ b/qt/ScintillaEdit/ScintillaDocument.cpp @@ -48,7 +48,6 @@ class WatcherHelper : public DocWatcher { ScintillaDocument *owner; public: explicit WatcherHelper(ScintillaDocument *owner_); - virtual ~WatcherHelper(); void NotifyModifyAttempt(Document *doc, void *userData) override; void NotifySavePoint(Document *doc, void *userData, bool atSavePoint) override; @@ -62,9 +61,6 @@ public: WatcherHelper::WatcherHelper(ScintillaDocument *owner_) : owner(owner_) { } -WatcherHelper::~WatcherHelper() { -} - void WatcherHelper::NotifyModifyAttempt(Document *, void *) { emit owner->modify_attempt(); } |