Skip to content

Commit 9740123

Browse files
author
cfarmer
committed
update author name and help dialog call
git-svn-id: http://svn.osgeo.org/qgis/trunk@10088 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 29b4f22 commit 9740123

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

python/plugins/fTools/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ def version():
2525

2626
def qgisMinimumVersion():
2727
return "1.0.0"
28+
29+
def authorName():
30+
return "Carson Farmer"
2831

2932
def classFactory( iface ):
3033
from fTools import fToolsPlugin

python/plugins/fTools/fTools.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def initGui( self ):
170170
QCoreApplication.translate( "fTools", "Split vector layer" ), self.iface.mainWindow() )
171171
self.dataManageMenu.addActions( [ self.project, self.define, self.joinAttr, self.spatJoin, self.splitVect ] )
172172

173-
self.about = QAction( QIcon( self.getThemeIcon( "ftools_logo.png" ) ),
173+
self.about_ftools = QAction( QIcon( self.getThemeIcon( "ftools_logo.png" ) ),
174174
QCoreApplication.translate( "fTools", "About fTools" ), self.iface.mainWindow() )
175175

176176
self.menu.addMenu( self.analysisMenu )
@@ -179,7 +179,7 @@ def initGui( self ):
179179
self.menu.addMenu( self.conversionMenu )
180180
self.menu.addMenu( self.dataManageMenu )
181181
self.menu.addSeparator()
182-
self.menu.addAction( self.about )
182+
self.menu.addAction( self.about_ftools )
183183

184184
menuBar = self.iface.mainWindow().menuBar()
185185
actions = menuBar.actions()
@@ -226,7 +226,7 @@ def initGui( self ):
226226
QObject.connect( self.spatJoin, SIGNAL("triggered()"), self.dospatJoin )
227227
QObject.connect( self.splitVect, SIGNAL("triggered()"), self.dosplitVect )
228228

229-
QObject.connect( self.about, SIGNAL("triggered()"), self.doabout )
229+
QObject.connect( self.about_ftools, SIGNAL("triggered()"), self.doabout )
230230

231231
def unload( self ):
232232
pass

0 commit comments

Comments
 (0)