diff options
| author | Neil Hodgson <nyamatongwe@gmail.com> | 2019-09-30 10:42:08 +1000 |
|---|---|---|
| committer | Neil Hodgson <nyamatongwe@gmail.com> | 2019-09-30 10:42:08 +1000 |
| commit | 44b175314f0b875e6d3fa0664ad2c0133e4542f9 (patch) | |
| tree | 705658e775b8822305573ebf9d1a91cbbcf11aa2 /gtk/ScintillaGTK.h | |
| parent | 6341309b1a394ba95c3b9cae037cbcd3d181c25d (diff) | |
| download | scintilla-mirror-44b175314f0b875e6d3fa0664ad2c0133e4542f9.tar.gz | |
Backport: Delete standard functions on classes where there could be attempts to copy.
Backport of changeset 7696:18f98becfeaa.
Diffstat (limited to 'gtk/ScintillaGTK.h')
| -rwxr-xr-x[-rw-r--r--] | gtk/ScintillaGTK.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gtk/ScintillaGTK.h b/gtk/ScintillaGTK.h index b87808824..357efee8a 100644..100755 --- a/gtk/ScintillaGTK.h +++ b/gtk/ScintillaGTK.h @@ -274,6 +274,12 @@ public: g_object_weak_ref(weakRef, WeakNotify, this); } + // Deleted so GObjectWatcher objects can not be copied. + GObjectWatcher(const GObjectWatcher&) = delete; + GObjectWatcher(GObjectWatcher&&) = delete; + GObjectWatcher&operator=(const GObjectWatcher&) = delete; + GObjectWatcher&operator=(GObjectWatcher&&) = delete; + virtual ~GObjectWatcher() { if (weakRef) { g_object_weak_unref(weakRef, WeakNotify, this); |
