diff options
author | Tobias Hunger <tobias.hunger@digia.com> | 2012-11-28 13:39:22 +0100 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@digia.com> | 2012-11-28 14:44:12 +0100 |
commit | 4ba7309b73c49c66f0c3d74ca8f718eefd378f74 (patch) | |
tree | febb435df0d62556e67fc9e25c1b0fc47ebe9820 /src/plugins/madde | |
parent | e64661d4bbc8d8fb6230fa5f40c2f29ca6b4e61b (diff) | |
download | qt-creator-4ba7309b73c49c66f0c3d74ca8f718eefd378f74.tar.gz |
Do not set displayName in BaseQtVersion
This will trigger a run of qmake -query which depends on a virtual
method. Set the display name in the derived Qt versions instead.
Change-Id: I47380fd25d38a2cf748a26e9c8324f3b23cb3b39
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
Diffstat (limited to 'src/plugins/madde')
-rw-r--r-- | src/plugins/madde/maemoqtversion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/madde/maemoqtversion.cpp b/src/plugins/madde/maemoqtversion.cpp index 2a8da1fd97..822e058c08 100644 --- a/src/plugins/madde/maemoqtversion.cpp +++ b/src/plugins/madde/maemoqtversion.cpp @@ -60,7 +60,7 @@ MaemoQtVersion::MaemoQtVersion(const Utils::FileName &path, bool isAutodetected, m_isvalidVersion(false), m_initialized(false) { - + setDisplayName(defaultDisplayName(qtVersionString(), path, false)); } MaemoQtVersion::~MaemoQtVersion() |