We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 955e18c commit a51c2adCopy full SHA for a51c2ad
src/plugins/plugin_template/plugin.cpp
@@ -72,7 +72,7 @@ void [pluginname]::initGui()
72
// Create the action for tool
73
mQActionPointer = new QAction( QIcon( ":/[pluginlcasename]/[pluginlcasename].png" ), tr( "[menuitemname]" ), this );
74
// Set the what's this text
75
- 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" ) );
76
// Connect the action to the run
77
connect( mQActionPointer, SIGNAL( triggered() ), this, SLOT( run() ) );
78
// Add the icon to the toolbar
0 commit comments