Skip to content

Commit

Permalink
Separate icons for mActionShowComposerManager and mActionFilePrint
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@12479 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
borysiasty committed Dec 15, 2009
1 parent f05e72f commit 5257ae3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions images/images.qrc
Expand Up @@ -17,6 +17,7 @@
<file>themes/newgis/mActionCaptureLine.png</file>
<file>themes/newgis/mActionCapturePoint.png</file>
<file>themes/newgis/mActionCapturePolygon.png</file>
<file>themes/newgis/mActionComposerManager.png</file>
<file>themes/newgis/mActionDeletePart.png</file>
<file>themes/newgis/mActionDeleteRing.png</file>
<file>themes/newgis/mActionDeleteSelected.png</file>
Expand Down Expand Up @@ -119,6 +120,7 @@
<file>themes/default/mActionCapturePolygon.png</file>
<file>themes/default/mActionCheckQgisVersion.png</file>
<file>themes/default/mActionCollapseTree.png</file>
<file>themes/default/mActionComposerManager.png</file>
<file>themes/default/mActionContextHelp.png</file>
<file>themes/default/mActionCopySelected.png</file>
<file>themes/default/mActionCustomProjection.png</file>
Expand Down Expand Up @@ -274,6 +276,7 @@
<file>themes/gis/mActionCaptureLine.png</file>
<file>themes/gis/mActionCapturePoint.png</file>
<file>themes/gis/mActionCapturePolygon.png</file>
<file>themes/gis/mActionComposerManager.png</file>
<file>themes/gis/mActionDeletePart.png</file>
<file>themes/gis/mActionDeleteRing.png</file>
<file>themes/gis/mActionDeleteSelected.png</file>
Expand Down
Binary file added images/themes/default/mActionComposerManager.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/themes/gis/mActionComposerManager.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/themes/newgis/mActionComposerManager.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/app/qgisapp.cpp
Expand Up @@ -596,7 +596,7 @@ void QgisApp::createActions()
mActionNewPrintComposer->setStatusTip( tr( "New Print Composer" ) );
connect( mActionNewPrintComposer, SIGNAL( triggered() ), this, SLOT( newPrintComposer() ) );

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

Expand Down Expand Up @@ -1672,7 +1672,7 @@ void QgisApp::setTheme( QString theThemeName )
mActionSaveProject->setIcon( getThemeIcon( "/mActionFileSave.png" ) );
mActionSaveProjectAs->setIcon( getThemeIcon( "/mActionFileSaveAs.png" ) );
mActionNewPrintComposer->setIcon( getThemeIcon( "/mActionNewComposer.png" ) );
mActionShowComposerManager->setIcon( getThemeIcon( "/mActionFilePrint.png" ) );
mActionShowComposerManager->setIcon( getThemeIcon( "/mActionComposerManager.png" ) );
mActionSaveMapAsImage->setIcon( getThemeIcon( "/mActionSaveMapAsImage.png" ) );
mActionExit->setIcon( getThemeIcon( "/mActionFileExit.png" ) );
mActionAddOgrLayer->setIcon( getThemeIcon( "/mActionAddOgrLayer.png" ) );
Expand Down

0 comments on commit 5257ae3

Please sign in to comment.