Skip to content

Commit

Permalink
Indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jan 30, 2018
1 parent b0d19f7 commit 0a9f019
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/mainwin.cpp
Expand Up @@ -143,7 +143,7 @@ int CALLBACK WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdL
NULL );

std::string message = "Could not load qgis_app.dll \n Windows Error: " + std::string( errorText )
+ "\n Help: \n\n Check " + basename + ".env for correct environment paths";
+ "\n Help: \n\n Check " + basename + ".env for correct environment paths";
showError( message, "Error loading QGIS" );

LocalFree( errorText );
Expand Down
2 changes: 1 addition & 1 deletion tests/src/core/testqgslayoutmultiframe.cpp
Expand Up @@ -522,7 +522,7 @@ void TestQgsLayoutMultiFrame::registry()
QVERIFY( registry.itemTypes().isEmpty() );
QVERIFY( !registry.createMultiFrame( 1, nullptr ) );

auto create = []( QgsLayout * layout )->QgsLayoutMultiFrame*
auto create = []( QgsLayout * layout )->QgsLayoutMultiFrame *
{
return new TestMultiFrame( layout );
};
Expand Down
2 changes: 1 addition & 1 deletion tests/src/gui/testqgslayoutview.cpp
Expand Up @@ -272,7 +272,7 @@ void TestQgsLayoutView::guiRegistry()
QSignalSpy spyTypeAdded( &registry, &QgsLayoutItemGuiRegistry::typeAdded );

// add a dummy item to registry
auto createWidget = []( QgsLayoutItem * item )->QgsLayoutItemBaseWidget*
auto createWidget = []( QgsLayoutItem * item )->QgsLayoutItemBaseWidget *
{
return new QgsLayoutItemBaseWidget( nullptr, item );
};
Expand Down
1 change: 1 addition & 0 deletions tests/src/python/test_qgsfieldmodel.py
Expand Up @@ -40,6 +40,7 @@ def create_model():


class TestQgsFieldModel(unittest.TestCase):

def testGettersSetters(self):
""" test model getters/setters """
l = create_layer()
Expand Down

0 comments on commit 0a9f019

Please sign in to comment.