]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/statusbar/mountpointobserver.cpp
Compile with QT_NO_KEYWORDS
[dolphin.git] / src / statusbar / mountpointobserver.cpp
index df2a4898fdfa515955b3357ac19687733c28f21c..7dbe631b53cc880619e05effa1fc7a835994a05d 100644 (file)
@@ -1,27 +1,15 @@
-/***************************************************************************
- *   Copyright (C) 2014 by Frank Reininghaus <frank78ac@googlemail.com>    *
- *                                                                         *
- *   This program 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 2 of the License, or     *
- *   (at your option) any later version.                                   *
- *                                                                         *
- *   This program 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 this program; if not, write to the                         *
- *   Free Software Foundation, Inc.,                                       *
- *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
- ***************************************************************************/
-
-#include <KIO/FileSystemFreeSpaceJob>
+/*
+ * SPDX-FileCopyrightText: 2014 Frank Reininghaus <frank78ac@googlemail.com>
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
 
 #include "mountpointobserver.h"
+
 #include "mountpointobservercache.h"
 
+#include <KIO/FileSystemFreeSpaceJob>
+
 MountPointObserver::MountPointObserver(const QUrl& url, QObject* parent) :
     QObject(parent),
     m_url(url),
@@ -48,8 +36,8 @@ void MountPointObserver::update()
 void MountPointObserver::freeSpaceResult(KIO::Job* job, KIO::filesize_t size, KIO::filesize_t available)
 {
     if (!job->error()) {
-        emit spaceInfoChanged(size, available);
+        Q_EMIT spaceInfoChanged(size, available);
     } else {
-        emit spaceInfoChanged(0, 0);
+        Q_EMIT spaceInfoChanged(0, 0);
     }
 }