Skip to content

Commit 983787f

Browse files
committed
Renamed symbols in __init__.py
1 parent 022f02f commit 983787f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

addon/globalPlugins/MathCAT/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,16 @@ class GlobalPlugin(globalPluginHandler.GlobalPlugin):
2929
def __init__(self, *args, **kwargs):
3030
super().__init__(*args, **kwargs)
3131
# MathCAT.__init__(self)
32-
self.add_MathCAT_menu()
32+
self.addMathCATMenu()
3333

34-
def add_MathCAT_menu(self):
34+
def addMathCATMenu(self):
3535
if not globalVars.appArgs.secure:
3636
self.preferencesMenu = mainFrame.sysTrayIcon.preferencesMenu
3737
# Translators: this show up in the NVDA preferences dialog. It opens the MathCAT preferences dialog
3838
self.settings = self.preferencesMenu.Append(wx.ID_ANY, _("&MathCAT Settings..."))
39-
mainFrame.sysTrayIcon.Bind(wx.EVT_MENU, self.on_settings, self.settings)
39+
mainFrame.sysTrayIcon.Bind(wx.EVT_MENU, self.onSettings, self.settings)
4040

41-
def on_settings(self, evt):
41+
def onSettings(self, evt):
4242
mainFrame.popupSettingsDialog(UserInterface)
4343

4444
def terminate(self):

0 commit comments

Comments
 (0)