meld r1176 - trunk



Author: vincele
Date: Tue Feb 24 08:17:36 2009
New Revision: 1176
URL: http://svn.gnome.org/viewvc/meld?rev=1176&view=rev

Log:
Use the right variable (probably was a typo)

In gnomeglade.py, connect_signal_handlers(),
the wrong variable name is used, the widget
list is in the "widget" variable...


Modified:
   trunk/gnomeglade.py

Modified: trunk/gnomeglade.py
==============================================================================
--- trunk/gnomeglade.py	(original)
+++ trunk/gnomeglade.py	Tue Feb 24 08:17:36 2009
@@ -127,7 +127,7 @@
                 widget = list(widget)
             except TypeError:
                 widget = [widget]
-            for w in widgets:
+            for w in widget:
                 try:
                     if when == 'on':
                         w.connect(signal, method)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]