From 06ebb765d92471f94863043dc9597b411981ad37 Mon Sep 17 00:00:00 2001 From: mitchell Date: Sun, 29 Mar 2020 19:31:21 -0400 Subject: Fixed bad backport r8078:742f17c763a4. Since C++11 does not support "static inline" initializers, the static members must still be defined elsewhere. --- gtk/ScintillaGTK.cxx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index feb2ec11b..a6b4f3aa8 100755 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -121,6 +121,11 @@ enum { TARGET_URI }; +GdkAtom ScintillaGTK::atomUTF8 = nullptr; +GdkAtom ScintillaGTK::atomString = nullptr; +GdkAtom ScintillaGTK::atomUriList = nullptr; +GdkAtom ScintillaGTK::atomDROPFILES_DND = nullptr; + static const GtkTargetEntry clipboardCopyTargets[] = { { (gchar *) "UTF8_STRING", 0, TARGET_UTF8_STRING }, { (gchar *) "STRING", 0, TARGET_STRING }, -- cgit v1.2.3