diff options
author | nyamatongwe <devnull@localhost> | 2003-09-26 14:20:49 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-09-26 14:20:49 +0000 |
commit | 53b7e34a92bef7818f32e971b8c780ee591c61e7 (patch) | |
tree | a75c7d78eed0e52e0b0d447fa98269c6ea913aab /gtk/ScintillaGTK.cxx | |
parent | 77f51b7b87d4b6e61d741290377c4ad82df603c0 (diff) | |
download | scintilla-mirror-rel-1-55.tar.gz |
Fixed compilation for GTK+ 1.x.rel-1-55
Diffstat (limited to 'gtk/ScintillaGTK.cxx')
-rw-r--r-- | gtk/ScintillaGTK.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index 33561fec6..e10aee5f2 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -1325,7 +1325,7 @@ void ScintillaGTK::GetSelection(GtkSelectionData *selection_data, guint info, Se #endif gtk_selection_data_set(selection_data, (info == TARGET_STRING) ? - GDK_SELECTION_TYPE_STRING : atomUTF8, + static_cast<GdkAtom>(GDK_SELECTION_TYPE_STRING) : atomUTF8, 8, reinterpret_cast<unsigned char *>(selBuffer), len); } else if ((info == TARGET_TEXT) || (info == TARGET_COMPOUND_TEXT)) { |