Correct usage of variable name under GTK2.

This commit is contained in:
Jarl Gullberg 2017-06-13 22:46:28 +02:00
parent 0a95b20860
commit 5c69098f63
No known key found for this signature in database
GPG key ID: 750FF6F6BDA72D23

View file

@ -53,8 +53,8 @@ namespace OpenTK.X11
IntPtr windowXid = gdk_x11_window_get_xid(gdkWindowHandle);
IntPtr rootWindowXid = gdk_x11_window_get_xid(gdkRootWindowHandle);
#else
IntPtr windowHandle = gdk_x11_drawable_get_xid(gdkWindowHandle);
IntPtr rootWindow = gdk_x11_drawable_get_xid(gdkRootWindowHandle);
IntPtr windowXid = gdk_x11_drawable_get_xid(gdkWindowHandle);
IntPtr rootWindowXid = gdk_x11_drawable_get_xid(gdkRootWindowHandle);
#endif
IntPtr visualInfo;