[gnome-settings-daemon] general: use GDK X11 API to fix build with GTK+ 2.91.7
- From: Cosimo Cecchi <cosimoc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-settings-daemon] general: use GDK X11 API to fix build with GTK+ 2.91.7
- Date: Thu, 23 Dec 2010 18:56:33 +0000 (UTC)
commit 1159cc85f17ca76a398367ed43abcea85888fc19
Author: Cosimo Cecchi <cosimoc gnome org>
Date: Thu Dec 23 19:40:12 2010 +0100
general: use GDK X11 API to fix build with GTK+ 2.91.7
plugins/clipboard/gsd-clipboard-manager.c | 4 ++--
plugins/keybindings/gsd-keybindings-manager.c | 2 +-
plugins/xrandr/gsd-xrandr-manager.c | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/plugins/clipboard/gsd-clipboard-manager.c b/plugins/clipboard/gsd-clipboard-manager.c
index bfa3f49..6dc773d 100644
--- a/plugins/clipboard/gsd-clipboard-manager.c
+++ b/plugins/clipboard/gsd-clipboard-manager.c
@@ -825,11 +825,11 @@ clipboard_manager_watch_cb (GsdClipboardManager *manager,
GdkDisplay *display;
display = gdk_display_get_default ();
- gdkwin = gdk_window_lookup_for_display (display, window);
+ gdkwin = gdk_x11_window_lookup_for_display (display, window);
if (is_start) {
if (gdkwin == NULL) {
- gdkwin = gdk_window_foreign_new_for_display (display, window);
+ gdkwin = gdk_x11_window_foreign_new_for_display (display, window);
} else {
g_object_ref (gdkwin);
}
diff --git a/plugins/keybindings/gsd-keybindings-manager.c b/plugins/keybindings/gsd-keybindings-manager.c
index 6349ddf..57f22d9 100644
--- a/plugins/keybindings/gsd-keybindings-manager.c
+++ b/plugins/keybindings/gsd-keybindings-manager.c
@@ -412,7 +412,7 @@ get_exec_environment (XEvent *xevent)
int i;
int display_index = -1;
GdkScreen *screen = NULL;
- GdkWindow *window = gdk_xid_table_lookup (xevent->xkey.root);
+ GdkWindow *window = gdk_x11_window_lookup_for_display (gdk_display_get_default (), xevent->xkey.root);
if (window) {
screen = gdk_window_get_screen (window);
diff --git a/plugins/xrandr/gsd-xrandr-manager.c b/plugins/xrandr/gsd-xrandr-manager.c
index 8b65f64..5d11b76 100644
--- a/plugins/xrandr/gsd-xrandr-manager.c
+++ b/plugins/xrandr/gsd-xrandr-manager.c
@@ -639,7 +639,7 @@ gsd_xrandr_manager_2_apply_configuration (GsdXrandrManager *manager,
gboolean result;
if (parent_window_id != 0)
- parent_window = gdk_window_foreign_new_for_display (gdk_display_get_default (), (GdkNativeWindow) parent_window_id);
+ parent_window = gdk_x11_window_foreign_new_for_display (gdk_display_get_default (), (GdkNativeWindow) parent_window_id);
else
parent_window = NULL;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]