Skip to content

Commit 3cb039f

Browse files
author
borysiasty
committed
Fix wrong icons in the Map Composer
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@11472 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 48a8c73 commit 3cb039f

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed
747 Bytes
Loading
2.1 KB
Loading
202 Bytes
Loading

src/app/composer/qgscomposer.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -241,16 +241,16 @@ void QgsComposer::setupTheme()
241241
//missing from active theme
242242
mActionLoadFromTemplate->setIcon( QgisApp::getThemeIcon( "/mActionFileOpen.png" ) );
243243
mActionSaveAsTemplate->setIcon( QgisApp::getThemeIcon( "/mActionFileSaveAs.png" ) );
244-
mActionExportAsImage->setIcon( QgisApp::getThemeIcon( "/mActionExportMapServer.png" ) );
244+
mActionExportAsImage->setIcon( QgisApp::getThemeIcon( "/mActionSaveMapAsImage.png" ) );
245245
mActionExportAsSVG->setIcon( QgisApp::getThemeIcon( "/mActionSaveAsSVG.png" ) );
246246
mActionExportAsPDF->setIcon( QgisApp::getThemeIcon( "/mActionSaveAsPDF.png" ) );
247247
mActionPrint->setIcon( QgisApp::getThemeIcon( "/mActionFilePrint.png" ) );
248248
mActionZoomAll->setIcon( QgisApp::getThemeIcon( "/mActionZoomFullExtent.png" ) );
249249
mActionZoomIn->setIcon( QgisApp::getThemeIcon( "/mActionZoomIn.png" ) );
250250
mActionZoomOut->setIcon( QgisApp::getThemeIcon( "/mActionZoomOut.png" ) );
251251
mActionRefreshView->setIcon( QgisApp::getThemeIcon( "/mActionDraw.png" ) );
252-
mActionAddImage->setIcon( QgisApp::getThemeIcon( "/mActionSaveMapAsImage.png" ) );
253-
mActionAddNewMap->setIcon( QgisApp::getThemeIcon( "/mActionAddRasterLayer.png" ) );
252+
mActionAddImage->setIcon( QgisApp::getThemeIcon( "/mActionAddImage.png" ) );
253+
mActionAddNewMap->setIcon( QgisApp::getThemeIcon( "/mActionAddMap.png" ) );
254254
mActionAddNewLabel->setIcon( QgisApp::getThemeIcon( "/mActionLabel.png" ) );
255255
mActionAddNewLegend->setIcon( QgisApp::getThemeIcon( "/mActionAddLegend.png" ) );
256256
mActionAddNewScalebar->setIcon( QgisApp::getThemeIcon( "/mActionScaleBar.png" ) );

src/ui/qgscomposerbase.ui

+3-3
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@
285285
</action>
286286
<action name="mActionAddNewMap" >
287287
<property name="icon" >
288-
<iconset>../themes/default/mActionAddRasterLayer.png</iconset>
288+
<iconset>../themes/default/mActionAddMap.png</iconset>
289289
</property>
290290
<property name="text" >
291291
<string>Add Map</string>
@@ -329,7 +329,7 @@
329329
</action>
330330
<action name="mActionExportAsImage" >
331331
<property name="icon" >
332-
<iconset>../themes/default/mActionExportMapServer.png</iconset>
332+
<iconset>../themes/default/mActionSaveMapAsImage.png</iconset>
333333
</property>
334334
<property name="text" >
335335
<string>Export as Image...</string>
@@ -375,7 +375,7 @@
375375
</action>
376376
<action name="mActionAddImage" >
377377
<property name="icon" >
378-
<iconset>../themes/default/mActionSaveMapAsImage.png</iconset>
378+
<iconset>../themes/default/mActionAddImage.png</iconset>
379379
</property>
380380
<property name="text" >
381381
<string>Add Image</string>

0 commit comments

Comments
 (0)