diff options
author | nyamatongwe <devnull@localhost> | 2002-01-26 04:20:15 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-01-26 04:20:15 +0000 |
commit | 44e8d9250ee24001c1908cb2f5db1481fec73611 (patch) | |
tree | 316d422324b3b10aecc630fb1eee468235424b30 | |
parent | c2ad46bce01fcbafa60df074ab68505ccc9ae10f (diff) | |
download | scintilla-mirror-44e8d9250ee24001c1908cb2f5db1481fec73611.tar.gz |
Changed a cast to avoid compilation troubles on 64 bit Alphas.
-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 d791e19fb..95139f318 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -576,7 +576,7 @@ void ScintillaGTK::SetTicking(bool on) { if (timer.ticking) { timer.tickerID = reinterpret_cast<TickerID>(gtk_timeout_add(timer.tickSize, (GtkFunction)TimeOut, this)); } else { - gtk_timeout_remove(reinterpret_cast<guint>(timer.tickerID)); + gtk_timeout_remove(GPOINTER_TO_UINT(timer.tickerID)); } } timer.ticksToWait = caret.period; |