Skip to content

Commit 2120bb8

Browse files
committed
Remove about dialog from gdal tools
1 parent 517fd7e commit 2120bb8

File tree

2 files changed

+0
-62
lines changed

2 files changed

+0
-62
lines changed

python/plugins/GdalTools/GdalTools.py

-11
Original file line numberDiff line numberDiff line change
@@ -264,12 +264,6 @@ def initGui( self ):
264264
QObject.connect( self.settings, SIGNAL( "triggered()" ), self.doSettings )
265265
self.menu.addAction( self.settings )
266266

267-
self.about = QAction( QIcon( ":icons/about.png" ), QCoreApplication.translate( "GdalTools", "About GdalTools" ), self.iface.mainWindow() )
268-
self.about.setStatusTip( QCoreApplication.translate( "GdalTools", "Displays information about Gdal Tools" ) )
269-
QObject.connect( self.about, SIGNAL( "triggered()" ), self.doAbout )
270-
self.menu.addSeparator()
271-
self.menu.addAction( self.about )
272-
273267
menu_bar = self.iface.mainWindow().menuBar()
274268
actions = menu_bar.actions()
275269
lastAction = actions[ len( actions ) - 1 ]
@@ -393,8 +387,3 @@ def doSettings( self ):
393387
from tools.doSettings import GdalToolsSettingsDialog as Settings
394388
d = Settings( self.iface )
395389
d.exec_()
396-
397-
def doAbout( self ):
398-
from tools.doAbout import GdalToolsAboutDialog as About
399-
d = About( self.iface )
400-
d.exec_()

python/plugins/GdalTools/tools/doAbout.py

-51
This file was deleted.

0 commit comments

Comments
 (0)