From: Ed Page Date: Sat, 5 Jun 2010 16:45:07 +0000 (-0500) Subject: FIxing some menu text X-Git-Url: https://vcs.maemo.org/git/?a=commitdiff_plain;h=29a6c420dfe27d1b86f8611d56ba79d0a3556b48;hp=17c7e88b2f55fb705a39a3f3578d25768759b7af;p=gonvert FIxing some menu text --- diff --git a/src/gonvert_qt.py b/src/gonvert_qt.py index ed8b8bf..374d72e 100755 --- a/src/gonvert_qt.py +++ b/src/gonvert_qt.py @@ -324,7 +324,7 @@ class QuickJump(object): self._window.setCentralWidget(centralWidget) self._closeWindowAction = QtGui.QAction(None) - self._closeWindowAction.setText("Window") + self._closeWindowAction.setText("Close") self._closeWindowAction.setShortcut(QtGui.QKeySequence("CTRL+w")) self._closeWindowAction.triggered.connect(self._on_close_window) @@ -415,7 +415,7 @@ class Recent(object): twi.setText(1, unit) self._closeWindowAction = QtGui.QAction(None) - self._closeWindowAction.setText("Window") + self._closeWindowAction.setText("Close") self._closeWindowAction.setShortcut(QtGui.QKeySequence("CTRL+w")) self._closeWindowAction.triggered.connect(self._on_close_window) @@ -509,7 +509,7 @@ class FavoriteCategoriesWindow(object): self._window.setCentralWidget(centralWidget) self._closeWindowAction = QtGui.QAction(None) - self._closeWindowAction.setText("Window") + self._closeWindowAction.setText("Close") self._closeWindowAction.setShortcut(QtGui.QKeySequence("CTRL+w")) self._closeWindowAction.triggered.connect(self._on_close_window) @@ -608,7 +608,7 @@ class CategoryWindow(object): self._app.showFavoritesAction.toggled.connect(self._on_show_favorites) self._closeWindowAction = QtGui.QAction(None) - self._closeWindowAction.setText("Window") + self._closeWindowAction.setText("Close") self._closeWindowAction.setShortcut(QtGui.QKeySequence("CTRL+w")) self._closeWindowAction.triggered.connect(self._on_close_window)