bigboard r7283 - in trunk/bigboard/stocks: people self



Author: otaylor
Date: Tue Apr  8 16:57:23 2008
New Revision: 7283
URL: http://svn.gnome.org/viewvc/bigboard?rev=7283&view=rev

Log:
Fix eroror in calling __sync() methods when external account icon update

Modified:
   trunk/bigboard/stocks/people/peoplewidgets.py
   trunk/bigboard/stocks/self/SelfStock.py

Modified: trunk/bigboard/stocks/people/peoplewidgets.py
==============================================================================
--- trunk/bigboard/stocks/people/peoplewidgets.py	(original)
+++ trunk/bigboard/stocks/people/peoplewidgets.py	Tue Apr  8 16:57:23 2008
@@ -317,7 +317,7 @@
         self.__acct.connect(self.__sync)
         self.__sync()
          
-    def __sync(self):
+    def __sync(self, *args):
         self.__img.set_url(self.__acct.iconUrl)
         
     def __launch_browser(self):

Modified: trunk/bigboard/stocks/self/SelfStock.py
==============================================================================
--- trunk/bigboard/stocks/self/SelfStock.py	(original)
+++ trunk/bigboard/stocks/self/SelfStock.py	Tue Apr  8 16:57:23 2008
@@ -64,7 +64,7 @@
         self.__acct.connect(self.__sync)
         self.__sync()
         
-    def __sync(self):
+    def __sync(self, *args):
         self.__img.set_url(self.__acct.iconUrl)
         
     def __launch_browser(self):



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