[X2Go-Commits] pyhoca-gui.git - build-59a18b6e3b5d3f1dd8f07f26433d37fe5984a57d (branch) updated: bb2d7102be5842d5f4c5ebf41bffb0e46a442a98

X2Go dev team git-admin at x2go.org
Tue Aug 27 13:20:44 CEST 2013


The branch, build-59a18b6e3b5d3f1dd8f07f26433d37fe5984a57d has been updated
       via  bb2d7102be5842d5f4c5ebf41bffb0e46a442a98 (commit)
      from  b2e428432a626c9b5507108a79b23ba89d358e28 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
-----------------------------------------------------------------------

Summary of changes:
 pyhoca/wxgui/menus_taskbar.py |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

The diff of changes is:
diff --git a/pyhoca/wxgui/menus_taskbar.py b/pyhoca/wxgui/menus_taskbar.py
index 8742f53..2d51b86 100644
--- a/pyhoca/wxgui/menus_taskbar.py
+++ b/pyhoca/wxgui/menus_taskbar.py
@@ -47,12 +47,12 @@ class PyHocaGUI_Menu_TaskbarManageProfile(wx.Menu):
         self._PyHocaGUI._eventid_profilenames_map[ID_EDITPROFILE] = \
             self._PyHocaGUI._eventid_profilenames_map[ID_DELETEPROFILE] = profile_name
 
-        self.Append(text="Edit Profile", id=ID_EDITPROFILE)
+        _edit_profile = self.Append(text="Edit Profile", id=ID_EDITPROFILE)
         self.AppendSeparator()
-        self.Append(text="Delete Profile", id=ID_DELETEPROFILE)
+        _delete_profile = self.Append(text="Delete Profile", id=ID_DELETEPROFILE)
 
-        self.Bind(wx.EVT_MENU, self._PyHocaGUI.OnProfileEdit, id=ID_EDITPROFILE)
-        self.Bind(wx.EVT_MENU, self._PyHocaGUI.OnProfileDelete, id=ID_DELETEPROFILE)
+        self.Bind(wx.EVT_MENU, self._PyHocaGUI.OnProfileEdit, _edit_profile)
+        self.Bind(wx.EVT_MENU, self._PyHocaGUI.OnProfileDelete, _delete_profile)
 
 
 class PyHocaGUI_Menu_TaskbarOptionsManager(wx.Menu):


hooks/post-receive
-- 
pyhoca-gui.git (Python X2Go Client (wxPython GUI))

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "pyhoca-gui.git" (Python X2Go Client (wxPython GUI)).




More information about the x2go-commits mailing list