Skip to content

Commit 874b29b

Browse files
author
jef
committedAug 27, 2008
minor update (indentation, debug output, plenks)
git-svn-id: http://svn.osgeo.org/qgis/trunk@9189 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent afc5416 commit 874b29b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+393
-408
lines changed
 

‎python/core/qgsrasterdataprovider.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public:
1919
{
2020
NoCapabilities = 0,
2121
Identify = 1
22-
// Capability2 = 1 << 1, , etc
22+
// Capability2 = 1 << 1, etc
2323
};
2424

2525

‎src/app/composer/qgscomposer.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -291,10 +291,10 @@ void QgsComposer::on_mActionZoomOut_activated( void )
291291

292292
void QgsComposer::on_mActionRefreshView_activated( void )
293293
{
294-
if(mComposition)
295-
{
296-
mComposition->update();
297-
}
294+
if ( mComposition )
295+
{
296+
mComposition->update();
297+
}
298298
}
299299

300300
void QgsComposer::on_mActionPrint_activated( void )
@@ -821,7 +821,7 @@ void QgsComposer::on_mActionExportAsImage_activated( void )
821821
QgsDebugMsg( QString( "Selected filter: %1" ).arg( myFilterString ) );
822822
QgsDebugMsg( QString( "Image type: %1" ).arg( myFilterMap[myFilterString] ) );
823823

824-
myQSettings.writeEntry( "/UI/lastSaveAsImageFormat" , myFilterMap[myFilterString] );
824+
myQSettings.writeEntry( "/UI/lastSaveAsImageFormat", myFilterMap[myFilterString] );
825825
myQSettings.writeEntry( "/UI/lastSaveAsImageFile", myOutputFileNameQString );
826826

827827
if ( myOutputFileNameQString == "" ) return;

0 commit comments

Comments
 (0)
Please sign in to comment.