aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk/ScintillaGTK.cxx
diff options
context:
space:
mode:
authorNeil Hodgson <nyamatongwe@gmail.com>2019-09-30 10:42:08 +1000
committerNeil Hodgson <nyamatongwe@gmail.com>2019-09-30 10:42:08 +1000
commit44b175314f0b875e6d3fa0664ad2c0133e4542f9 (patch)
tree705658e775b8822305573ebf9d1a91cbbcf11aa2 /gtk/ScintillaGTK.cxx
parent6341309b1a394ba95c3b9cae037cbcd3d181c25d (diff)
downloadscintilla-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.cxx')
-rwxr-xr-x[-rw-r--r--]gtk/ScintillaGTK.cxx10
1 files changed, 10 insertions, 0 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx
index 9e3410450..8ed9ea1ce 100644..100755
--- a/gtk/ScintillaGTK.cxx
+++ b/gtk/ScintillaGTK.cxx
@@ -432,6 +432,11 @@ public:
uniStr = g_utf8_to_ucs4_fast(str, strlen(str), &uniStrLen);
pscript = pango_script_for_unichar(uniStr[0]);
}
+ // Deleted so PreEditString objects can not be copied.
+ PreEditString(const PreEditString&) = delete;
+ PreEditString(PreEditString&&) = delete;
+ PreEditString&operator=(const PreEditString&) = delete;
+ PreEditString&operator=(PreEditString&&) = delete;
~PreEditString() {
g_free(str);
g_free(uniStr);
@@ -1201,6 +1206,11 @@ struct CaseMapper {
mapped = g_utf8_strdown(sUTF8.c_str(), sUTF8.length());
}
}
+ // Deleted so CaseMapper objects can not be copied.
+ CaseMapper(const CaseMapper&) = delete;
+ CaseMapper(CaseMapper&&) = delete;
+ CaseMapper&operator=(const CaseMapper&) = delete;
+ CaseMapper&operator=(CaseMapper&&) = delete;
~CaseMapper() {
g_free(mapped);
}