summaryrefslogtreecommitdiffstats
path: root/src/pvsgui.cpp
diff options
context:
space:
mode:
authorJohann Latocha2010-08-29 15:59:33 +0200
committerJohann Latocha2010-08-29 15:59:33 +0200
commita483b1d5e98316c73c7e3080c693f1c8085e14b3 (patch)
tree31412fb99655264e2fe9f5d8c2148caa0d91b2c2 /src/pvsgui.cpp
parentFeature #633 (diff)
downloadpvs-a483b1d5e98316c73c7e3080c693f1c8085e14b3.tar.gz
pvs-a483b1d5e98316c73c7e3080c693f1c8085e14b3.tar.xz
pvs-a483b1d5e98316c73c7e3080c693f1c8085e14b3.zip
Bug fixed: create config-dir
Diffstat (limited to 'src/pvsgui.cpp')
-rw-r--r--src/pvsgui.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pvsgui.cpp b/src/pvsgui.cpp
index 41a79b9..747d843 100644
--- a/src/pvsgui.cpp
+++ b/src/pvsgui.cpp
@@ -25,7 +25,10 @@ PVSGUI::PVSGUI(QWidget *parent) :
setupUi(this);
if (!QFile::exists(_settings.fileName()))
+ {
+ QDir::root().mkpath(QFileInfo(_settings.fileName()).path());
QFile::copy("/etc/openslx/pvsgui.conf", _settings.fileName());
+ }
_menu = new QMenu(this);
_hostMenu = new QMenu(tr("Connect"), this);