]> git.sur5r.net Git - minitube/blobdiff - src/temporary.cpp
Upload 3.9.3-2 to unstable
[minitube] / src / temporary.cpp
index 362cbd8db0d4d595c77ac6e134ad71868897f448..2bf7fcd4e213d32742906cd93d710fb5e22c69d3 100644 (file)
@@ -1,20 +1,40 @@
+/* $BEGIN_LICENSE
+
+This file is part of Minitube.
+Copyright 2009, Flavio Tordini <flavio.tordini@gmail.com>
+
+Minitube is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Minitube is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Minitube.  If not, see <http://www.gnu.org/licenses/>.
+
+$END_LICENSE */
+
 #include "temporary.h"
 #include "constants.h"
 
-static QList<QString> paths;
-#ifdef Q_WS_X11
+static QVector<QString> paths;
+#ifdef APP_LINUX
 static QString userName;
 #endif
 
 Temporary::Temporary() { }
 
 QString Temporary::filename() {
+    static const QString tempDir = QStandardPaths::writableLocation(QStandardPaths::TempLocation);
 
-    static const QString tempDir = QDesktopServices::storageLocation(QDesktopServices::TempLocation);
-
-    QString tempFile = tempDir + "/" + Constants::UNIX_NAME + "-" + QString::number(qrand());
+    QString tempFile = tempDir + "/" + Constants::UNIX_NAME + "-" +
+                       QString::number(QRandomGenerator::global()->generate());
 
-#ifdef Q_WS_X11
+#ifdef APP_LINUX
     if (userName.isNull()) {
         userName = QString(getenv("USERNAME"));
         if (userName.isEmpty())
@@ -44,7 +64,7 @@ QString Temporary::filename() {
 }
 
 void Temporary::deleteAll() {
-    foreach(QString path, paths) {
+    foreach(const QString &path, paths) {
         if (QFile::exists(path) && !QFile::remove(path)) {
             qDebug() << "Cannot remove temp file" << path;
         }