Skip to content

Commit

Permalink
Remove about dialog from gdal tools
Browse files Browse the repository at this point in the history
  • Loading branch information
mhugent committed Apr 21, 2012
1 parent 517fd7e commit 2120bb8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 62 deletions.
11 changes: 0 additions & 11 deletions python/plugins/GdalTools/GdalTools.py
Expand Up @@ -264,12 +264,6 @@ def initGui( self ):
QObject.connect( self.settings, SIGNAL( "triggered()" ), self.doSettings )
self.menu.addAction( self.settings )

self.about = QAction( QIcon( ":icons/about.png" ), QCoreApplication.translate( "GdalTools", "About GdalTools" ), self.iface.mainWindow() )
self.about.setStatusTip( QCoreApplication.translate( "GdalTools", "Displays information about Gdal Tools" ) )
QObject.connect( self.about, SIGNAL( "triggered()" ), self.doAbout )
self.menu.addSeparator()
self.menu.addAction( self.about )

menu_bar = self.iface.mainWindow().menuBar()
actions = menu_bar.actions()
lastAction = actions[ len( actions ) - 1 ]
Expand Down Expand Up @@ -393,8 +387,3 @@ def doSettings( self ):
from tools.doSettings import GdalToolsSettingsDialog as Settings
d = Settings( self.iface )
d.exec_()

def doAbout( self ):
from tools.doAbout import GdalToolsAboutDialog as About
d = About( self.iface )
d.exec_()
51 changes: 0 additions & 51 deletions python/plugins/GdalTools/tools/doAbout.py

This file was deleted.

0 comments on commit 2120bb8

Please sign in to comment.