[rhmessaging-commits] rhmessaging commits: r3386 - mgmt/trunk/cumin/python/cumin.

rhmessaging-commits at lists.jboss.org rhmessaging-commits at lists.jboss.org
Wed May 20 11:20:11 EDT 2009


Author: eallen
Date: 2009-05-20 11:20:11 -0400 (Wed, 20 May 2009)
New Revision: 3386

Modified:
   mgmt/trunk/cumin/python/cumin/widgets.py
Log:
Explicitly call process on ActionInvocationSet for CuminMainView

Modified: mgmt/trunk/cumin/python/cumin/widgets.py
===================================================================
--- mgmt/trunk/cumin/python/cumin/widgets.py	2009-05-20 15:18:24 UTC (rev 3385)
+++ mgmt/trunk/cumin/python/cumin/widgets.py	2009-05-20 15:20:11 UTC (rev 3386)
@@ -54,6 +54,11 @@
         self.actions = ActionInvocationSet(app, "actions")
         self.add_child(self.actions)
 
+    def do_process(self, session, *args):
+        self.actions.process(session, *args)
+
+        super(CuminMainView, self).do_process(session, *args)
+
     def show_child(self, session, child):
         super(CuminMainView, self).show_child(session, child)
 




More information about the rhmessaging-commits mailing list