Skip to content

Commit

Permalink
update author name and help dialog call
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@10088 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
cfarmer committed Feb 2, 2009
1 parent 29b4f22 commit 9740123
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions python/plugins/fTools/__init__.py
Expand Up @@ -25,6 +25,9 @@ def version():

def qgisMinimumVersion():
return "1.0.0"

def authorName():
return "Carson Farmer"

def classFactory( iface ):
from fTools import fToolsPlugin
Expand Down
6 changes: 3 additions & 3 deletions python/plugins/fTools/fTools.py
Expand Up @@ -170,7 +170,7 @@ def initGui( self ):
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 )
Expand All @@ -179,7 +179,7 @@ def initGui( self ):
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()
Expand Down Expand Up @@ -226,7 +226,7 @@ def initGui( self ):
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
Expand Down

0 comments on commit 9740123

Please sign in to comment.