Indentation

This commit is contained in:
Nyall Dawson 2018-01-30 15:59:35 +10:00
parent b0d19f74d7
commit 0a9f019f27
4 changed files with 4 additions and 3 deletions

View File

@ -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 );

View File

@ -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 );
};

View File

@ -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 );
};

View File

@ -40,6 +40,7 @@ def create_model():
class TestQgsFieldModel(unittest.TestCase):
def testGettersSetters(self):
""" test model getters/setters """
l = create_layer()