diff options
author | Daniel Teske <[email protected]> | 2015-01-27 18:46:40 +0100 |
---|---|---|
committer | Daniel Teske <[email protected]> | 2015-02-13 15:35:35 +0000 |
commit | e7b90b8681f68a889f2da601b42b001111aaef43 (patch) | |
tree | 227fe1d655553ada4cfe7cca48852a27d6932a93 /src/plugins/android/androidmanifestdocument.cpp | |
parent | 5442d144b65efd873e851f540512c2c19c010cba (diff) |
Android: Set correct ANDROID_NDK_PLATFORM
Introduce the class AndroidQmakeBuildConfiguration whose purpose is
to set the environment variable. Modify the Factory to create
buildconfigurations of that type and fix restore/clone to also
take the factories' priorities into account.
Change-Id: Icb377fa9211cd3564c36b60cf7c5f7dd84fcab50
Reviewed-by: BogDan Vatra <[email protected]>
Diffstat (limited to 'src/plugins/android/androidmanifestdocument.cpp')
-rw-r--r-- | src/plugins/android/androidmanifestdocument.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/android/androidmanifestdocument.cpp b/src/plugins/android/androidmanifestdocument.cpp index 64696959d85..cce32f2edfd 100644 --- a/src/plugins/android/androidmanifestdocument.cpp +++ b/src/plugins/android/androidmanifestdocument.cpp @@ -51,7 +51,9 @@ AndroidManifestDocument::AndroidManifestDocument(AndroidManifestEditorWidget *ed bool AndroidManifestDocument::save(QString *errorString, const QString &fileName, bool autoSave) { m_editorWidget->preSave(); - return TextDocument::save(errorString, fileName, autoSave); + bool result = TextDocument::save(errorString, fileName, autoSave); + m_editorWidget->postSave(); + return result; } QString AndroidManifestDocument::defaultPath() const |