Skip to content

Commit

Permalink
fix plugin template
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@9327 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Sep 14, 2008
1 parent 955e18c commit a51c2ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/plugin_template/plugin.cpp
Expand Up @@ -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
Expand Down

0 comments on commit a51c2ad

Please sign in to comment.