aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk/ScintillaGTK.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2019-11-22 16:45:01 +1100
committerNeil <nyamatongwe@gmail.com>2019-11-22 16:45:01 +1100
commitdf312dd97f04aaed14f528f2f822302042d756c5 (patch)
tree0e966a969f46f77f5e7911deb38f714f9f1cacb6 /gtk/ScintillaGTK.h
parentaa9d4c34a4ac3f8ff1f11a34a5265ac19b3566d7 (diff)
downloadscintilla-mirror-df312dd97f04aaed14f528f2f822302042d756c5.tar.gz
Replace GTimeVal and g_get_current_time with gint64 and g_get_monotonic_time.
GTimeVal was deprecated in GLib 2.61.2 as it is not year-2038-safe.
Diffstat (limited to 'gtk/ScintillaGTK.h')
-rwxr-xr-xgtk/ScintillaGTK.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/ScintillaGTK.h b/gtk/ScintillaGTK.h
index 357efee8a..516115acc 100755
--- a/gtk/ScintillaGTK.h
+++ b/gtk/ScintillaGTK.h
@@ -53,7 +53,7 @@ class ScintillaGTK : public ScintillaBase {
// Wheel mouse support
unsigned int linesPerScroll;
- GTimeVal lastWheelMouseTime;
+ gint64 lastWheelMouseTime;
gint lastWheelMouseDirection;
gint wheelMouseIntensity;
gdouble smoothScrollY;