Skip to content

Commit

Permalink
Indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed May 14, 2017
1 parent 6971e9d commit cbc2a3d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/native/mac/cocoainitializer.h
Expand Up @@ -48,7 +48,7 @@ class CocoaInitializer

private:
class Private;
Private* d;
Private *d;
};

#endif // COCOAINITIALIZER_H
2 changes: 1 addition & 1 deletion src/native/mac/qgsmacnative.h
Expand Up @@ -25,7 +25,7 @@ class NATIVE_EXPORT QgsMacNative : public QgsNative
public:
virtual ~QgsMacNative();

virtual const char* currentAppLocalizedName();
virtual const char *currentAppLocalizedName();
virtual void currentAppActivateIgnoringOtherApps() override;
};

Expand Down
2 changes: 1 addition & 1 deletion tests/src/native/testqgsmacnative.cpp
Expand Up @@ -30,7 +30,7 @@ class TestQgsMacNative: public QObject

void TestQgsMacNative::testGetRunningAppName()
{
QgsMacNative* macNative = new QgsMacNative();
QgsMacNative *macNative = new QgsMacNative();
QCOMPARE( QStringLiteral( "qgis_macnativetest" ), QString( macNative->currentAppLocalizedName() ) );
delete macNative;
}
Expand Down

0 comments on commit cbc2a3d

Please sign in to comment.