[QGIS Commit] r9327 - trunk/qgis/src/plugins/plugin_template

svn_qgis at osgeo.org svn_qgis at osgeo.org
Sun Sep 14 07:18:44 EDT 2008


Author: jef
Date: 2008-09-14 07:18:44 -0400 (Sun, 14 Sep 2008)
New Revision: 9327

Modified:
   trunk/qgis/src/plugins/plugin_template/plugin.cpp
Log:
fix plugin template

Modified: trunk/qgis/src/plugins/plugin_template/plugin.cpp
===================================================================
--- trunk/qgis/src/plugins/plugin_template/plugin.cpp	2008-09-14 06:30:33 UTC (rev 9326)
+++ trunk/qgis/src/plugins/plugin_template/plugin.cpp	2008-09-14 11:18:44 UTC (rev 9327)
@@ -72,7 +72,7 @@
   // 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



More information about the QGIS-commit mailing list