Skip to content

Commit bc4acc9

Browse files
author
timlinux
committedJan 24, 2006
More updates to make icons clearer and more logically laid out
git-svn-id: http://svn.osgeo.org/qgis/trunk@4729 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 814bf69 commit bc4acc9

10 files changed

+6
-6
lines changed
 
5.23 KB
Binary file not shown.
-92 Bytes
Loading
394 Bytes
Loading
74 Bytes
Loading
189 Bytes
Loading
77 Bytes
Loading
Loading
112 Bytes
Loading
-86 Bytes
Loading

‎src/gui/qgisapp.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -428,16 +428,16 @@ void QgisApp::createActions()
428428
//#endif
429429
assert(connect(mActionAddLayer, SIGNAL(triggered()), this, SLOT(addDatabaseLayer())));
430430
//
431-
mActionRemoveLayer= new QAction(QIcon(myIconPath+"/mActionRemoveLayer.png"), tr("Remove Layer"), this);
432-
mActionRemoveLayer->setShortcut(tr("Ctrl+D"));
433-
mActionRemoveLayer->setStatusTip(tr("Remove a Layer"));
434-
connect(mActionRemoveLayer, SIGNAL(triggered()), this, SLOT(removeLayer()));
435-
//
436431
mActionNewVectorLayer= new QAction(QIcon(myIconPath+"/mActionNewVectorLayer.png"), tr("New Vector Layer"), this);
437432
mActionNewVectorLayer->setShortcut(tr("N"));
438433
mActionNewVectorLayer->setStatusTip(tr("Create a New Vector Layer"));
439434
connect(mActionNewVectorLayer, SIGNAL(triggered()), this, SLOT(newVectorLayer()));
440435
//
436+
mActionRemoveLayer= new QAction(QIcon(myIconPath+"/mActionRemoveLayer.png"), tr("Remove Layer"), this);
437+
mActionRemoveLayer->setShortcut(tr("Ctrl+D"));
438+
mActionRemoveLayer->setStatusTip(tr("Remove a Layer"));
439+
connect(mActionRemoveLayer, SIGNAL(triggered()), this, SLOT(removeLayer()));
440+
//
441441
mActionAddAllToOverview= new QAction(QIcon(myIconPath+"/mActionAddAllToOverview.png"), tr("Add All To Overview"), this);
442442
mActionAddAllToOverview->setShortcut(tr("+"));
443443
mActionAddAllToOverview->setStatusTip(tr("Show all layers in the overview map"));
@@ -766,8 +766,8 @@ void QgisApp::createToolBars()
766766
mLayerToolBar->addAction(mActionAddLayer);
767767
#endif
768768
mLayerToolBar->addAction(mActionAddWmsLayer);
769-
mLayerToolBar->addAction(mActionRemoveLayer);
770769
mLayerToolBar->addAction(mActionNewVectorLayer);
770+
mLayerToolBar->addAction(mActionRemoveLayer);
771771
mLayerToolBar->addAction(mActionInOverview);
772772
mLayerToolBar->addAction(mActionAddAllToOverview);
773773
mLayerToolBar->addAction(mActionRemoveAllFromOverview);

0 commit comments

Comments
 (0)
Please sign in to comment.