Skip to content

Commit

Permalink
indentation update
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Jul 21, 2014
1 parent c88aab3 commit e74ff3c
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/saga/RasterCalculator.py
Expand Up @@ -58,7 +58,7 @@ def defineCharacteristics(self):
self.name = 'Raster calculator'
self.cmdname = 'Grid Calculator'
self.undecoratedGroup = "grid_calculus"
self.group = SagaGroupNameDecorator.getDecoratedName(self.undecoratedGroup)
self.group = SagaGroupNameDecorator.getDecoratedName(self.undecoratedGroup)
self.addParameter(ParameterRaster(self.GRIDS, 'Main input layers'))
self.addParameter(ParameterMultipleInput(self.XGRIDS, 'Additional layers',
ParameterMultipleInput.TYPE_RASTER, False))
Expand Down
4 changes: 2 additions & 2 deletions src/app/qgsprojectproperties.cpp
Expand Up @@ -1468,8 +1468,8 @@ void QgsProjectProperties::resetPythonMacros()
{
grpPythonMacros->setChecked( false );
ptePythonMacros->setText( "def openProject():\n pass\n\n" \
"def saveProject():\n pass\n\n" \
"def closeProject():\n pass\n" );
"def saveProject():\n pass\n\n" \
"def closeProject():\n pass\n" );
}

void QgsProjectProperties::populateEllipsoidList()
Expand Down
2 changes: 1 addition & 1 deletion src/core/pal/feature.h
Expand Up @@ -254,7 +254,7 @@ namespace pal
* Called by Pal::save()
* \param file the file to write
*/
void save(std::ofstream *file);
void save( std::ofstream *file );
#endif

/**
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsmaplayerlegend.cpp
Expand Up @@ -48,7 +48,7 @@ QgsMapLayerLegend* QgsMapLayerLegend::defaultPluginLegend( QgsPluginLayer* pl )


QgsLayerTreeModelLegendNode::QgsLayerTreeModelLegendNode( QgsLayerTreeLayer* nodeL )
: mParent( nodeL )
: mParent( nodeL )
{
}

Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgscodeeditor.cpp
Expand Up @@ -37,7 +37,7 @@ QgsCodeEditor::QgsCodeEditor( QWidget *parent, QString title, bool folding, bool
setWindowTitle( mWidgetTitle );
}
setSciWidget();
setHorizontalScrollBarPolicy(Qt::ScrollBarAsNeeded);
setHorizontalScrollBarPolicy( Qt::ScrollBarAsNeeded );
}

QgsCodeEditor::~QgsCodeEditor()
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgscodeeditorsql.cpp
Expand Up @@ -23,7 +23,7 @@


QgsCodeEditorSQL::QgsCodeEditorSQL( QWidget *parent )
: QgsCodeEditor( parent )
: QgsCodeEditor( parent )
{
if ( !parent )
{
Expand Down

0 comments on commit e74ff3c

Please sign in to comment.