fix plugin template

git-svn-id: http://svn.osgeo.org/qgis/trunk@9327 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
jef 2008-09-14 11:18:44 +00:00
parent 955e18c908
commit a51c2ad672

View File

@ -72,7 +72,7 @@ void [pluginname]::initGui()
// Create the action for tool
mQActionPointer = new QAction( QIcon( ":/[pluginlcasename]/[pluginlcasename].png" ), tr( "[menuitemname]" ), this );
// Set the what's this text
mQActionPointer->setWhatsThis( tr( "Replace this with a short description of the what the plugin does" ) );
mQActionPointer->setWhatsThis( tr( "Replace this with a short description of what the plugin does" ) );
// Connect the action to the run
connect( mQActionPointer, SIGNAL( triggered() ), this, SLOT( run() ) );
// Add the icon to the toolbar