summaryrefslogtreecommitdiff
path: root/gdk/win32/gdkfont-win32.c
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2004-03-05 23:26:07 +0000
committerTor Lillqvist <tml@src.gnome.org>2004-03-05 23:26:07 +0000
commit72d622fcf5fda236ca080e832c7247a830cc644e (patch)
tree0862c456dc7487a19d9e460f60d4e57491291b5c /gdk/win32/gdkfont-win32.c
parented1d4349e81911519bf334489eb42b8ad451666b (diff)
downloadgdk-pixbuf-72d622fcf5fda236ca080e832c7247a830cc644e.tar.gz
Add missing entries, thanks to J. Ali Harlow.
2004-03-05 Tor Lillqvist <tml@iki.fi> * gdk/gdk.def: Add missing entries, thanks to J. Ali Harlow. * gdk/win32/gdkcursor-win32.c (color_is_white): const-correctness. (gdk_cursor_new_from_pixbuf): Copy of the non-Xcursor X11 implementation. (gdk_display_supports_cursor_alpha, gdk_display_supports_cursor_color): Dummy implementations. (gdk_display_get_default_cursor_size, gdk_display_get_maximal_cursor_size): Implement. * gdk/win32/gdkdisplay-win32.c (gdk_display_get_default_group): Dummy implementation. * gdk/win32/gdkevents-win32.c (gdk_net_wm_supports): Dummy implementation. * gdk/win32/gdkfont-win32.c (gdk_font_get_display): Implement. * gdk/win32/gdkinput-win32.c (gdk_input_motion_events): Remove, not in API. * gdk/win32/gdkwindow-win32.c (gdk_window_get_group): Dummy implementation.
Diffstat (limited to 'gdk/win32/gdkfont-win32.c')
-rw-r--r--gdk/win32/gdkfont-win32.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/gdk/win32/gdkfont-win32.c b/gdk/win32/gdkfont-win32.c
index 7e1cbbd91..e76f12bfe 100644
--- a/gdk/win32/gdkfont-win32.c
+++ b/gdk/win32/gdkfont-win32.c
@@ -1709,3 +1709,9 @@ gdk_text_extents_wc (GdkFont *font,
if (descent)
*descent = font->descent + 1;
}
+
+GdkDisplay*
+gdk_font_get_display (GdkFont* font)
+{
+ return _gdk_display;
+}