aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk/PlatGTK.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/PlatGTK.cxx')
-rwxr-xr-xgtk/PlatGTK.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx
index 9fe312121..95cc9e509 100755
--- a/gtk/PlatGTK.cxx
+++ b/gtk/PlatGTK.cxx
@@ -1078,27 +1078,27 @@ void Window::SetCursor(Cursor curs) {
GdkCursor *gdkCurs;
switch (curs) {
- case cursorText:
+ case Cursor::text:
gdkCurs = gdk_cursor_new_for_display(pdisplay, GDK_XTERM);
break;
- case cursorArrow:
+ case Cursor::arrow:
gdkCurs = gdk_cursor_new_for_display(pdisplay, GDK_LEFT_PTR);
break;
- case cursorUp:
+ case Cursor::up:
gdkCurs = gdk_cursor_new_for_display(pdisplay, GDK_CENTER_PTR);
break;
- case cursorWait:
+ case Cursor::wait:
gdkCurs = gdk_cursor_new_for_display(pdisplay, GDK_WATCH);
break;
- case cursorHand:
+ case Cursor::hand:
gdkCurs = gdk_cursor_new_for_display(pdisplay, GDK_HAND2);
break;
- case cursorReverseArrow:
+ case Cursor::reverseArrow:
gdkCurs = gdk_cursor_new_for_display(pdisplay, GDK_RIGHT_PTR);
break;
default:
gdkCurs = gdk_cursor_new_for_display(pdisplay, GDK_LEFT_PTR);
- cursorLast = cursorArrow;
+ cursorLast = Cursor::arrow;
break;
}