tinc-gui: Fix GetListCtrl method name in SuperListCtrl
authorMartin Weinelt <mweinelt@gmail.com>
Mon, 28 Sep 2015 03:34:22 +0000 (05:34 +0200)
committerMartin Weinelt <mweinelt@gmail.com>
Mon, 28 Sep 2015 03:34:22 +0000 (05:34 +0200)
wxPython wrongly expects camelcase method names, this however
is against PEP8

gui/tinc-gui

index f135a01..4652096 100755 (executable)
@@ -334,7 +334,7 @@ class SuperListCtrl(wx.ListCtrl, ColumnSorterMixin, ListCtrlAutoWidthMixin):
         ListCtrlAutoWidthMixin.__init__(self)
         ColumnSorterMixin.__init__(self, 16)
 
-    def get_list_ctrl(self):
+    def GetListCtrl(self):
         return self
 
 
@@ -603,16 +603,6 @@ class NetPage(wx.Notebook):
 
 
 class MainWindow(wx.Frame):
-    def on_quit(self, event):
-        app.ExitMainLoop()
-
-    def on_timer(self, event):
-        vpn.refresh()
-        self.np.nodes.refresh()
-        self.np.subnets.refresh()
-        self.np.edges.refresh()
-        self.np.connections.refresh()
-
     def __init__(self, parent, id, title):
         wx.Frame.__init__(self, parent, id, title)
 
@@ -634,6 +624,16 @@ class MainWindow(wx.Frame):
         self.SetMenuBar(menubar)
         self.Show()
 
+    def on_quit(self, event):
+        app.ExitMainLoop()
+
+    def on_timer(self, event):
+        vpn.refresh()
+        self.np.nodes.refresh()
+        self.np.subnets.refresh()
+        self.np.edges.refresh()
+        self.np.connections.refresh()
+
 
 app = wx.App()
 mw = MainWindow(None, -1, 'Tinc GUI')