From 94a983b88a68d9539d435bd5962412227bc061ba Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Mon, 16 Apr 2001 05:16:30 +0000 Subject: Changed spelling mistake URIsDropped -> URIDropped. --- gtk/ScintillaGTK.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gtk') diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index 7c8c684d0..ebb06e4aa 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -96,7 +96,7 @@ private: virtual void NotifyFocus(bool focus); virtual void NotifyParent(SCNotification scn); void NotifyKey(int key, int modifiers); - void NotifyURIsDropped(const char *list); + void NotifyURIDropped(const char *list); virtual int KeyDefault(int key, int modifiers); virtual void Copy(); virtual void Paste(); @@ -707,9 +707,9 @@ void ScintillaGTK::NotifyKey(int key, int modifiers) { NotifyParent(scn); } -void ScintillaGTK::NotifyURIsDropped(const char *list) { +void ScintillaGTK::NotifyURIDropped(const char *list) { SCNotification scn; - scn.nmhdr.code = SCN_URISDROPPED; + scn.nmhdr.code = SCN_URIDROPPED; scn.text = list; NotifyParent(scn); @@ -844,7 +844,7 @@ void ScintillaGTK::ReceivedDrop(GtkSelectionData *selection_data) { } } else { char *ptr = reinterpret_cast(selection_data->data); - NotifyURIsDropped(ptr); + NotifyURIDropped(ptr); } Redraw(); } -- cgit v1.2.3