From 867cd7e715746573ae409841d1d2d8f1f2ff7d08 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 16 Jun 2014 08:29:54 -0400 Subject: [PATCH] Add a quick todo list --- gdk/x11/gdkclipboard-x11.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/gdk/x11/gdkclipboard-x11.c b/gdk/x11/gdkclipboard-x11.c index fec9d4e0bd..80d060c9d3 100644 --- a/gdk/x11/gdkclipboard-x11.c +++ b/gdk/x11/gdkclipboard-x11.c @@ -15,6 +15,13 @@ * License along with this library. If not, see . */ +/* Open issues: + * - suppport other image formats + * - implement MULTIPLE + * - implement INCR + * - cache remote data and shortcut + */ + #include "config.h" #include "gdkclipboardprivate.h" @@ -996,7 +1003,7 @@ gdk_clipboard_x11_handle_selection_owner_change (GdkClipboardX11 *cb, if (cb->xselection != event->selection) return FALSE; - if (event->owner != None && event->owner != cb->xowner) + if (event->owner != cb->xowner) { _gdk_clipboard_set_available_content (GDK_CLIPBOARD (cb), NO_CONTENT, NULL); gdk_clipboard_x11_get_targets_async (cb, NULL, targets_received, NULL);