gtkclipboard: Fix typo
authorCarlos Garnacho <carlosg@gnome.org>
Wed, 10 May 2017 18:20:50 +0000 (20:20 +0200)
committerCarlos Garnacho <carlosg@gnome.org>
Wed, 10 May 2017 18:25:40 +0000 (20:25 +0200)
The standard atom is UTF8_STRING.

gtk/gtkclipboard.c

index 7de4f600994b5023d01908cd65da4983a7df1db0..c34c8024bf9720dae2939337ce494e8128f60e59 100644 (file)
@@ -1045,7 +1045,7 @@ request_text_received_func (GtkClipboard     *clipboard,
       if (target == gdk_atom_intern_static_string ("text/plain;charset=utf-8"))
         {
           gtk_clipboard_request_contents (clipboard,
-                                          gdk_atom_intern_static_string ("UTF8_TEXT"),
+                                          gdk_atom_intern_static_string ("UTF8_STRING"),
                                           request_text_received_func, info);
           return;
         }