Skip to content

Commit 0a9f019

Browse files
committed
Indentation
1 parent b0d19f7 commit 0a9f019

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

src/app/mainwin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ int CALLBACK WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdL
143143
NULL );
144144

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

149149
LocalFree( errorText );

tests/src/core/testqgslayoutmultiframe.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ void TestQgsLayoutMultiFrame::registry()
522522
QVERIFY( registry.itemTypes().isEmpty() );
523523
QVERIFY( !registry.createMultiFrame( 1, nullptr ) );
524524

525-
auto create = []( QgsLayout * layout )->QgsLayoutMultiFrame*
525+
auto create = []( QgsLayout * layout )->QgsLayoutMultiFrame *
526526
{
527527
return new TestMultiFrame( layout );
528528
};

tests/src/gui/testqgslayoutview.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ void TestQgsLayoutView::guiRegistry()
272272
QSignalSpy spyTypeAdded( &registry, &QgsLayoutItemGuiRegistry::typeAdded );
273273

274274
// add a dummy item to registry
275-
auto createWidget = []( QgsLayoutItem * item )->QgsLayoutItemBaseWidget*
275+
auto createWidget = []( QgsLayoutItem * item )->QgsLayoutItemBaseWidget *
276276
{
277277
return new QgsLayoutItemBaseWidget( nullptr, item );
278278
};

tests/src/python/test_qgsfieldmodel.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ def create_model():
4040

4141

4242
class TestQgsFieldModel(unittest.TestCase):
43+
4344
def testGettersSetters(self):
4445
""" test model getters/setters """
4546
l = create_layer()

0 commit comments

Comments
 (0)