aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2002-01-26 04:20:15 +0000
committernyamatongwe <devnull@localhost>2002-01-26 04:20:15 +0000
commit44e8d9250ee24001c1908cb2f5db1481fec73611 (patch)
tree316d422324b3b10aecc630fb1eee468235424b30
parentc2ad46bce01fcbafa60df074ab68505ccc9ae10f (diff)
downloadscintilla-mirror-44e8d9250ee24001c1908cb2f5db1481fec73611.tar.gz
Changed a cast to avoid compilation troubles on 64 bit Alphas.
-rw-r--r--gtk/ScintillaGTK.cxx2
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;