Skip to content

Commit a51c2ad

Browse files
author
jef
committed
fix plugin template
git-svn-id: http://svn.osgeo.org/qgis/trunk@9327 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 955e18c commit a51c2ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/plugin_template/plugin.cpp

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

0 commit comments

Comments
 (0)