diff options
Diffstat (limited to 'gtk/ScintillaGTK.cxx')
-rw-r--r-- | gtk/ScintillaGTK.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index 227a33b3f..273333465 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -1218,7 +1218,7 @@ void ScintillaGTK::NotifyParent(SCNotification scn) { } void ScintillaGTK::NotifyKey(int key, int modifiers) { - SCNotification scn = {0}; + SCNotification scn = {}; scn.nmhdr.code = SCN_KEY; scn.ch = key; scn.modifiers = modifiers; @@ -1227,7 +1227,7 @@ void ScintillaGTK::NotifyKey(int key, int modifiers) { } void ScintillaGTK::NotifyURIDropped(const char *list) { - SCNotification scn = {0}; + SCNotification scn = {}; scn.nmhdr.code = SCN_URIDROPPED; scn.text = list; |