mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
update author name and help dialog call
git-svn-id: http://svn.osgeo.org/qgis/trunk@10088 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
29b4f22764
commit
9740123281
@ -25,6 +25,9 @@ def version():
|
||||
|
||||
def qgisMinimumVersion():
|
||||
return "1.0.0"
|
||||
|
||||
def authorName():
|
||||
return "Carson Farmer"
|
||||
|
||||
def classFactory( iface ):
|
||||
from fTools import fToolsPlugin
|
||||
|
@ -170,7 +170,7 @@ class fToolsPlugin:
|
||||
QCoreApplication.translate( "fTools", "Split vector layer" ), self.iface.mainWindow() )
|
||||
self.dataManageMenu.addActions( [ self.project, self.define, self.joinAttr, self.spatJoin, self.splitVect ] )
|
||||
|
||||
self.about = QAction( QIcon( self.getThemeIcon( "ftools_logo.png" ) ),
|
||||
self.about_ftools = QAction( QIcon( self.getThemeIcon( "ftools_logo.png" ) ),
|
||||
QCoreApplication.translate( "fTools", "About fTools" ), self.iface.mainWindow() )
|
||||
|
||||
self.menu.addMenu( self.analysisMenu )
|
||||
@ -179,7 +179,7 @@ class fToolsPlugin:
|
||||
self.menu.addMenu( self.conversionMenu )
|
||||
self.menu.addMenu( self.dataManageMenu )
|
||||
self.menu.addSeparator()
|
||||
self.menu.addAction( self.about )
|
||||
self.menu.addAction( self.about_ftools )
|
||||
|
||||
menuBar = self.iface.mainWindow().menuBar()
|
||||
actions = menuBar.actions()
|
||||
@ -226,7 +226,7 @@ class fToolsPlugin:
|
||||
QObject.connect( self.spatJoin, SIGNAL("triggered()"), self.dospatJoin )
|
||||
QObject.connect( self.splitVect, SIGNAL("triggered()"), self.dosplitVect )
|
||||
|
||||
QObject.connect( self.about, SIGNAL("triggered()"), self.doabout )
|
||||
QObject.connect( self.about_ftools, SIGNAL("triggered()"), self.doabout )
|
||||
|
||||
def unload( self ):
|
||||
pass
|
||||
|
Loading…
x
Reference in New Issue
Block a user