Skip to content

Commit b8c20b0

Browse files
author
macho
committedAug 25, 2010
fix iconnames
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@14147 c8812cc2-4d05-0410-92ff-de0c093fc19c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/app/legend/qgslegend.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ void QgsLegend::handleRightClickEvent( QTreeWidgetItem* item, const QPoint& posi
454454
}
455455
else if ( li->type() == QgsLegendItem::LEGEND_GROUP )
456456
{
457-
theMenu.addAction( QgisApp::getThemeIcon( "/mActionRemove.png" ),
457+
theMenu.addAction( QgisApp::getThemeIcon( "/mActionRemoveLayer.png" ),
458458
tr( "&Remove" ), this, SLOT( legendGroupRemove() ) );
459459
}
460460

‎src/app/legend/qgslegendlayer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ void QgsLegendLayer::addToPopupMenu( QMenu& theMenu )
411411
showInOverviewAction->blockSignals( false );
412412

413413
// remove from canvas
414-
theMenu.addAction( QgisApp::getThemeIcon( "/mActionRemove.png" ), tr( "&Remove" ), QgisApp::instance(), SLOT( removeLayer() ) );
414+
theMenu.addAction( QgisApp::getThemeIcon( "/mActionRemoveLayer.png" ), tr( "&Remove" ), QgisApp::instance(), SLOT( removeLayer() ) );
415415

416416
theMenu.addSeparator();
417417

0 commit comments

Comments
 (0)
Please sign in to comment.