summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2012-12-06 20:10:55 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-03-13 18:40:26 +0100
commit1188885fdf09980c6339562acc5f1d0bb9a4bc0d (patch)
treec0d40cc2036424556765c002b0a7d95d25e22be9 /src
parentcb22d3bbba7bf7938561f7093ebaed92e6111f02 (diff)
QStandardPaths::displayName() is unavailable when bootstrapped
reflect that in the class definition Change-Id: I1224ed851b220abae38c62a4d3dbea8ddbd40b83 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Diffstat (limited to 'src')
-rw-r--r--src/corelib/io/qstandardpaths.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/corelib/io/qstandardpaths.h b/src/corelib/io/qstandardpaths.h
index 2376b7d6c8..d8b6d24f57 100644
--- a/src/corelib/io/qstandardpaths.h
+++ b/src/corelib/io/qstandardpaths.h
@@ -83,7 +83,9 @@ public:
static QString locate(StandardLocation type, const QString &fileName, LocateOptions options = LocateFile);
static QStringList locateAll(StandardLocation type, const QString &fileName, LocateOptions options = LocateFile);
+#ifndef QT_BOOTSTRAPPED
static QString displayName(StandardLocation type);
+#endif
static QString findExecutable(const QString &executableName, const QStringList &paths = QStringList());