summaryrefslogtreecommitdiffstats
path: root/installerbuilder/libinstaller/qtcreatorpersistentsettings.cpp
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@nokia.com>2011-06-09 16:12:47 +0200
committerTim Jenssen <tim.jenssen@nokia.com>2011-06-09 16:12:47 +0200
commit90cfad939aa8631cd778a21e112e40bbc8397e20 (patch)
tree383169483be2231f284ad06b880b53eb0f1b17ca /installerbuilder/libinstaller/qtcreatorpersistentsettings.cpp
parent75a8626124d1b86ded4ffb2a4f7548d3f515bc60 (diff)
mkpath is not a static method
Diffstat (limited to 'installerbuilder/libinstaller/qtcreatorpersistentsettings.cpp')
-rw-r--r--installerbuilder/libinstaller/qtcreatorpersistentsettings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/installerbuilder/libinstaller/qtcreatorpersistentsettings.cpp b/installerbuilder/libinstaller/qtcreatorpersistentsettings.cpp
index 5539515b7..d85852527 100644
--- a/installerbuilder/libinstaller/qtcreatorpersistentsettings.cpp
+++ b/installerbuilder/libinstaller/qtcreatorpersistentsettings.cpp
@@ -192,6 +192,6 @@ bool QtCreatorPersistentSettings::save()
m_writer.saveValue(QLatin1String(TOOLCHAIN_FILE_VERSION_KEY), 1);
- QDir::mkpath(QDir(m_fileName).absolutePath());
+ QDir().mkpath(QDir(m_fileName).absolutePath());
return m_writer.save(m_fileName, QLatin1String("QtCreatorToolChains"));
}