diff options
author | Michele Calgaro <[email protected]> | 2020-04-04 23:16:08 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-04-04 23:17:22 +0900 |
commit | 45d14e1d5444c4bd7e90a57e4548f6e660fef8de (patch) | |
tree | 564dc357a38bd87369a358cc01a30867f351c30f | |
parent | b386a32fafb3acf627cc35be2b8417c093a1c900 (diff) | |
download | tdewebdev-45d14e1d5444c4bd7e90a57e4548f6e660fef8de.tar.gz tdewebdev-45d14e1d5444c4bd7e90a57e4548f6e660fef8de.zip |
Fixed kde- --> tde- tmp folder.
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit bf659c391585b258fdc83aae756936c42d3482c3)
-rw-r--r-- | quanta/src/quanta.cpp | 2 | ||||
-rw-r--r-- | quanta/src/quanta_init.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/quanta/src/quanta.cpp b/quanta/src/quanta.cpp index dba88f38..d72cce65 100644 --- a/quanta/src/quanta.cpp +++ b/quanta/src/quanta.cpp @@ -320,7 +320,7 @@ QuantaApp::~QuantaApp() tmpDir = tmpDirs[0]; for (uint i = 0; i < tmpDirs.count(); i++) { - if (tmpDirs[i].contains("kde-")) + if (tmpDirs[i].contains("tde-")) tmpDir = tmpDirs[i]; } TQString infoCss = tmpDir; diff --git a/quanta/src/quanta_init.cpp b/quanta/src/quanta_init.cpp index 37202d2f..f01f22d7 100644 --- a/quanta/src/quanta_init.cpp +++ b/quanta/src/quanta_init.cpp @@ -138,7 +138,7 @@ void QuantaInit::initQuanta() tmpDir = tmpDirs[0]; for (uint i = 0; i < tmpDirs.count(); i++) { - if (tmpDirs[i].contains("kde-")) + if (tmpDirs[i].contains("tde-")) tmpDir = tmpDirs[i]; } dir.mkdir(tmpDir + "quanta"); |