Skip to content

Commit 5257ae3

Browse files
author
borysiasty
committed
Separate icons for mActionShowComposerManager and mActionFilePrint
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@12479 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent f05e72f commit 5257ae3

File tree

5 files changed

+5
-2
lines changed

5 files changed

+5
-2
lines changed

images/images.qrc

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
<file>themes/newgis/mActionCaptureLine.png</file>
1818
<file>themes/newgis/mActionCapturePoint.png</file>
1919
<file>themes/newgis/mActionCapturePolygon.png</file>
20+
<file>themes/newgis/mActionComposerManager.png</file>
2021
<file>themes/newgis/mActionDeletePart.png</file>
2122
<file>themes/newgis/mActionDeleteRing.png</file>
2223
<file>themes/newgis/mActionDeleteSelected.png</file>
@@ -119,6 +120,7 @@
119120
<file>themes/default/mActionCapturePolygon.png</file>
120121
<file>themes/default/mActionCheckQgisVersion.png</file>
121122
<file>themes/default/mActionCollapseTree.png</file>
123+
<file>themes/default/mActionComposerManager.png</file>
122124
<file>themes/default/mActionContextHelp.png</file>
123125
<file>themes/default/mActionCopySelected.png</file>
124126
<file>themes/default/mActionCustomProjection.png</file>
@@ -274,6 +276,7 @@
274276
<file>themes/gis/mActionCaptureLine.png</file>
275277
<file>themes/gis/mActionCapturePoint.png</file>
276278
<file>themes/gis/mActionCapturePolygon.png</file>
279+
<file>themes/gis/mActionComposerManager.png</file>
277280
<file>themes/gis/mActionDeletePart.png</file>
278281
<file>themes/gis/mActionDeleteRing.png</file>
279282
<file>themes/gis/mActionDeleteSelected.png</file>
1001 Bytes
Loading
532 Bytes
Loading
532 Bytes
Loading

src/app/qgisapp.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ void QgisApp::createActions()
596596
mActionNewPrintComposer->setStatusTip( tr( "New Print Composer" ) );
597597
connect( mActionNewPrintComposer, SIGNAL( triggered() ), this, SLOT( newPrintComposer() ) );
598598

599-
mActionShowComposerManager = new QAction( getThemeIcon( "mActionFilePrint.png" ), tr( "Composer manager..." ), this );
599+
mActionShowComposerManager = new QAction( getThemeIcon( "mActionComposerManager.png" ), tr( "Composer manager..." ), this );
600600
mActionShowComposerManager->setStatusTip( tr( "Composer manager" ) );
601601
connect( mActionShowComposerManager, SIGNAL( triggered() ), this, SLOT( showComposerManager() ) );
602602

@@ -1672,7 +1672,7 @@ void QgisApp::setTheme( QString theThemeName )
16721672
mActionSaveProject->setIcon( getThemeIcon( "/mActionFileSave.png" ) );
16731673
mActionSaveProjectAs->setIcon( getThemeIcon( "/mActionFileSaveAs.png" ) );
16741674
mActionNewPrintComposer->setIcon( getThemeIcon( "/mActionNewComposer.png" ) );
1675-
mActionShowComposerManager->setIcon( getThemeIcon( "/mActionFilePrint.png" ) );
1675+
mActionShowComposerManager->setIcon( getThemeIcon( "/mActionComposerManager.png" ) );
16761676
mActionSaveMapAsImage->setIcon( getThemeIcon( "/mActionSaveMapAsImage.png" ) );
16771677
mActionExit->setIcon( getThemeIcon( "/mActionFileExit.png" ) );
16781678
mActionAddOgrLayer->setIcon( getThemeIcon( "/mActionAddOgrLayer.png" ) );

0 commit comments

Comments
 (0)