From e92bb7d1dd7adc02503e3ee795e53b15634df570 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 28 Sep 2015 05:34:22 +0200 Subject: [PATCH] tinc-gui: Fix GetListCtrl method name in SuperListCtrl wxPython wrongly expects camelcase method names, this however is against PEP8 --- gui/tinc-gui | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/gui/tinc-gui b/gui/tinc-gui index f135a012..4652096b 100755 --- a/gui/tinc-gui +++ b/gui/tinc-gui @@ -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') -- 2.20.1