Skip to content

Commit

Permalink
Remove about dialog in db manager
Browse files Browse the repository at this point in the history
  • Loading branch information
mhugent committed Apr 21, 2012
1 parent 2120bb8 commit 445144c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 57 deletions.
9 changes: 0 additions & 9 deletions python/plugins/db_manager/db_manager.py
Expand Up @@ -320,10 +320,6 @@ def unregisterAllActions(self):
self.unregisterAction( action, menuName )
del self._registeredDbActions

def about(self):
from .dlg_about import DlgAbout
DlgAbout(self).exec_()

def setupUi(self):
self.setWindowTitle("DB Manager")
self.setWindowIcon(QIcon(":/db_manager/icon"))
Expand Down Expand Up @@ -359,8 +355,6 @@ def setupUi(self):
actionMenuSchema = self.menuBar.addMenu(self.menuSchema)
self.menuTable = QMenu("&Table", self)
actionMenuTable = self.menuBar.addMenu(self.menuTable)
self.menuHelp = QMenu("&Help", self)
actionMenuHelp = self.menuBar.addMenu(self.menuHelp)

self.setMenuBar(self.menuBar)

Expand Down Expand Up @@ -391,9 +385,6 @@ def setupUi(self):
self.actionShowSystemTables.setChecked(True)
self.actionShowSystemTables.setVisible(False)

# menu HELP
self.actionAbout = self.menuHelp.addAction(QIcon(":/db_manager/about"), "&About", self.about)

# add actions to the toolbar
self.toolBar.addAction( self.actionRefresh )
self.toolBar.addAction( self.actionSqlWindow )
Expand Down
48 changes: 0 additions & 48 deletions python/plugins/db_manager/dlg_about.py

This file was deleted.

0 comments on commit 445144c

Please sign in to comment.