Skip to content

Commit fafe8d7

Browse files
author
brushtyler
committedNov 14, 2010
moved "oracle raster" plugin to the Database menu
git-svn-id: http://svn.osgeo.org/qgis/trunk@14671 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 9ab5f7d commit fafe8d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/plugins/oracle_raster/qgsoracle_plugin.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ void QgsOraclePlugin::initGui()
6060
connect( mQActionPointer, SIGNAL( triggered() ), this, SLOT( run() ) );
6161
// Add the icon to the toolbar
6262
mQGisIface->addToolBarIcon( mQActionPointer );
63-
mQGisIface->addPluginToMenu( tr( "&Oracle Spatial" ), mQActionPointer );
63+
mQGisIface->addPluginToDatabaseMenu( tr( "&Oracle Spatial" ), mQActionPointer );
6464

6565
}
6666
//method defined in interface
@@ -88,7 +88,7 @@ void QgsOraclePlugin::run()
8888
void QgsOraclePlugin::unload()
8989
{
9090
// remove the GUI
91-
mQGisIface->removePluginMenu( "&Oracle Spatial", mQActionPointer );
91+
mQGisIface->removePluginDatabaseMenu( "&Oracle Spatial", mQActionPointer );
9292
mQGisIface->removeToolBarIcon( mQActionPointer );
9393
delete mQActionPointer;
9494
}

0 commit comments

Comments
 (0)
Please sign in to comment.