diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-12-03 22:32:49 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-12-03 22:32:49 +0800 |
commit | e1873eec13666db81e379eb591b771a5d4122505 (patch) | |
tree | 2f8b3aff32ab51b63375853312a9ba0c24dd7d20 | |
parent | 5964bd5d8e7ba463e89e742701b006615d502a85 (diff) | |
download | gsoc2013-empathy-e1873eec13666db81e379eb591b771a5d4122505.tar gsoc2013-empathy-e1873eec13666db81e379eb591b771a5d4122505.tar.gz gsoc2013-empathy-e1873eec13666db81e379eb591b771a5d4122505.tar.bz2 gsoc2013-empathy-e1873eec13666db81e379eb591b771a5d4122505.tar.lz gsoc2013-empathy-e1873eec13666db81e379eb591b771a5d4122505.tar.xz gsoc2013-empathy-e1873eec13666db81e379eb591b771a5d4122505.tar.zst gsoc2013-empathy-e1873eec13666db81e379eb591b771a5d4122505.zip |
gdk_x11_drawable_get_xdisplay() has been renamed, so let's use the specific macro instead
-rw-r--r-- | libempathy-gtk/empathy-ui-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-ui-utils.c b/libempathy-gtk/empathy-ui-utils.c index 5761308fa..4c1287424 100644 --- a/libempathy-gtk/empathy-ui-utils.c +++ b/libempathy-gtk/empathy-ui-utils.c @@ -1564,7 +1564,7 @@ empathy_window_iconify (GtkWindow *window, GtkStatusIcon *status_icon) gtk_status_icon_get_geometry (status_icon, NULL, &icon_location, NULL); gdk_window = gtk_widget_get_window (GTK_WIDGET (window)); - dpy = gdk_x11_drawable_get_xdisplay (gdk_window); + dpy = GDK_WINDOW_XDISPLAY (gdk_window); data[0] = icon_location.x; data[1] = icon_location.y; |