Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Replaced addAddLayer with insertAddLayerAction
git-svn-id: http://svn.osgeo.org/qgis/trunk@15463 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Mar 13, 2011
1 parent 945db6d commit d7ad3b0
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion python/gui/qgisinterface.sip
Expand Up @@ -98,7 +98,7 @@ class QgisInterface : QObject
/** Add "add layer" action to the layer menu
* @note added in 1.7
*/
virtual void addAddLayer( QAction* action )=0;
virtual void insertAddLayerAction( QAction* action )=0;

/** Remove "add layer" action from the layer menu
* @note added in 1.7
Expand Down
2 changes: 1 addition & 1 deletion src/app/qgisapp.cpp
Expand Up @@ -5299,7 +5299,7 @@ QMenu* QgisApp::getDatabaseMenu( QString menuName )
return menu;
}

void QgisApp::addAddLayer( QAction *action )
void QgisApp::insertAddLayerAction( QAction *action )
{
mLayerMenu->insertAction( mActionAddLayerSeparator, action );
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/qgisapp.h
Expand Up @@ -520,7 +520,7 @@ class QgisApp : public QMainWindow, private Ui::MainWindow
//! Remove the action to the submenu with the given name under the Database menu
void removePluginDatabaseMenu( QString name, QAction* action );
//! Add "add layer" action to layer menu
void addAddLayer( QAction* action );
void insertAddLayerAction( QAction* action );
//! Remove "add layer" action to layer menu
void removeAddLayer( QAction* action );
//! Add an icon to the plugin toolbar
Expand Down
4 changes: 2 additions & 2 deletions src/app/qgisappinterface.cpp
Expand Up @@ -140,9 +140,9 @@ void QgisAppInterface::addPluginToMenu( QString name, QAction* action )
qgis->addPluginToMenu( name, action );
}

void QgisAppInterface::addAddLayer( QAction *action )
void QgisAppInterface::insertAddLayerAction( QAction *action )
{
qgis->addAddLayer( action );
qgis->insertAddLayerAction( action );
}

void QgisAppInterface::removeAddLayer( QAction *action )
Expand Down
2 changes: 1 addition & 1 deletion src/app/qgisappinterface.h
Expand Up @@ -118,7 +118,7 @@ class QgisAppInterface : public QgisInterface
void removePluginDatabaseMenu( QString name, QAction* action );

/** Add "add layer" action to the layer menu */
void addAddLayer( QAction *action );
void insertAddLayerAction( QAction *action );
/** remove "add layer" action from the layer menu */
void removeAddLayer( QAction *action );

Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgisinterface.h
Expand Up @@ -139,7 +139,7 @@ class GUI_EXPORT QgisInterface : public QObject
/** Add "add layer" action to layer menu
* @note added in 1.7
*/
virtual void addAddLayer( QAction *action ) = 0;
virtual void insertAddLayerAction( QAction *action ) = 0;

/** Remove "add layer" action from layer menu
* @note added in 1.7
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/delimited_text/qgsdelimitedtextplugin.cpp
Expand Up @@ -109,7 +109,7 @@ void QgsDelimitedTextPlugin::initGui()
connect( myQActionPointer, SIGNAL( triggered() ), this, SLOT( run() ) );
// Add the icon to the toolbar
qGisInterface->addToolBarIcon( myQActionPointer );
qGisInterface->addAddLayer( myQActionPointer );
qGisInterface->insertAddLayerAction( myQActionPointer );
// this is called when the icon theme is changed
connect( qGisInterface, SIGNAL( currentThemeChanged( QString ) ), this, SLOT( setCurrentTheme( QString ) ) );

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/oracle_raster/qgsoracle_plugin.cpp
Expand Up @@ -61,7 +61,7 @@ void QgsOraclePlugin::initGui()
connect( mQActionPointer, SIGNAL( triggered() ), this, SLOT( run() ) );
// Add the icon to the toolbar
mQGisIface->addToolBarIcon( mQActionPointer );
mQGisIface->addAddLayer( mQActionPointer );
mQGisIface->insertAddLayerAction( mQActionPointer );

}
//method defined in interface
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/sqlanywhere/sqlanywhere.cpp
Expand Up @@ -86,7 +86,7 @@ void SqlAnywhere::initGui()
// mQGisIface->addToolBarIcon( mActionAddSqlAnywhereLayer );

// Also add to Layer menu
mQGisIface->addAddLayer( mActionAddSqlAnywhereLayer );
mQGisIface->insertAddLayerAction( mActionAddSqlAnywhereLayer );
}

//method defined in interface
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/wfs/qgswfsplugin.cpp
Expand Up @@ -54,7 +54,7 @@ void QgsWFSPlugin::initGui()
setCurrentTheme( "" );
QObject::connect( mWfsDialogAction, SIGNAL( triggered() ), this, SLOT( showSourceDialog() ) );
mIface->layerToolBar()->addAction( mWfsDialogAction );
mIface->addAddLayer( mWfsDialogAction );
mIface->insertAddLayerAction( mWfsDialogAction );
// this is called when the icon theme is changed
connect( mIface, SIGNAL( currentThemeChanged( QString ) ), this, SLOT( setCurrentTheme( QString ) ) );
}
Expand Down

0 comments on commit d7ad3b0

Please sign in to comment.