summaryrefslogtreecommitdiffstats
path: root/qmake/property.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qmake/property.cpp')
-rw-r--r--qmake/property.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qmake/property.cpp b/qmake/property.cpp
index 31d6cdc9d6..971607ef61 100644
--- a/qmake/property.cpp
+++ b/qmake/property.cpp
@@ -39,7 +39,7 @@ QT_BEGIN_NAMESPACE
static const struct {
const char *name;
- QLibraryInfo::LibraryLocation loc;
+ QLibraryInfo::LibraryPath loc;
bool raw;
bool singular;
} propList[] = {
@@ -84,7 +84,7 @@ void QMakeProperty::reload()
QString val = QLibraryInfo::rawLocation(propList[i].loc, QLibraryInfo::FinalPaths);
if (!propList[i].raw) {
m_values[ProKey(name + "/dev")] = QLibraryInfo::rawLocation(propList[i].loc, QLibraryInfo::DevicePaths);
- m_values[ProKey(name)] = QLibraryInfo::location(propList[i].loc);
+ m_values[ProKey(name)] = QLibraryInfo::path(propList[i].loc);
name += "/raw";
}
m_values[ProKey(name)] = val;