[pygobject/pygobject-2-28] [gi-demos] fix clipboard demo to reflect new API
- From: John Palmieri <johnp src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pygobject/pygobject-2-28] [gi-demos] fix clipboard demo to reflect new API
- Date: Tue, 15 Feb 2011 16:23:39 +0000 (UTC)
commit 5434b7aac323170ea9469afbda520b801462c246
Author: John (J5) Palmieri <johnp redhat com>
Date: Tue Feb 15 10:18:53 2011 -0500
[gi-demos] fix clipboard demo to reflect new API
demos/gtk-demo/demos/clipboard.py | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/demos/gtk-demo/demos/clipboard.py b/demos/gtk-demo/demos/clipboard.py
index fa8f2da..1ebabf7 100644
--- a/demos/gtk-demo/demos/clipboard.py
+++ b/demos/gtk-demo/demos/clipboard.py
@@ -62,10 +62,10 @@ class ClipboardApp:
hbox.pack_start(button, False, False, 0)
button.connect('clicked', self.copy_button_clicked, entry)
-
label = Gtk.Label(label='"Paste" will paste the text from the clipboard to the entry')
vbox.pack_start(label, False, False, 0)
+
hbox = Gtk.HBox(homogeneous=False, spacing=4)
hbox.set_border_width(8)
vbox.pack_start(hbox, False, False, 0)
@@ -138,7 +138,7 @@ class ClipboardApp:
#FIXME: Allow sending strings a Atoms and convert in PyGI
atom = Gdk.atom_intern('CLIPBOARD', True)
clipboard = Gtk.Clipboard.get(atom)
- clipboard.set_can_store(None, 0)
+ clipboard.set_can_store(None)
self.window.show_all()
@@ -183,7 +183,7 @@ class ClipboardApp:
selection_data.set_pixbuf(pixbuf)
def drag_data_received(self, widget, context, x, y, selection_data, info, time, data):
- if selection_data.length > 0:
+ if selection_data.get_length() > 0:
pixbuf = selection_data.get_pixbuf()
data.set_from_pixbuf(pixbuf)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]