diff options
author | nyamatongwe <unknown> | 2005-02-02 05:56:02 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2005-02-02 05:56:02 +0000 |
commit | 707d7c0d430f71ccdfb0a65f276ccd23f1678557 (patch) | |
tree | 8b8f51c40e33ab19d325774484f5fc6e9f2467fd | |
parent | 2845cd05753b7726f1835e870ff81e6f1c2b6e15 (diff) | |
download | scintilla-mirror-707d7c0d430f71ccdfb0a65f276ccd23f1678557.tar.gz |
Patch from Naba fixes crash on 64 bit platforms.
-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 6e75143b7..bff423626 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -2405,8 +2405,8 @@ static void scintilla_init(ScintillaObject *sci); extern void Platform_Initialise(); extern void Platform_Finalise(); -guint scintilla_get_type() { - static guint scintilla_type = 0; +GtkType scintilla_get_type() { + static GtkType scintilla_type = 0; if (!scintilla_type) { Platform_Initialise(); |