Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
|
@@ -48,7 +48,7 @@ class CocoaInitializer |
|
|
|
|
|
private: |
|
|
class Private; |
|
|
Private* d; |
|
|
Private *d; |
|
|
}; |
|
|
|
|
|
#endif // COCOAINITIALIZER_H |
|
@@ -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; |
|
|
}; |
|
|
|
|
|
|
@@ -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; |
|
|
} |
|
|
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.