X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/d380d27f47a67e6e682a4b980c66585f13a3d7b5..c6bccbf6de33ba907f1cddfa64dadb8cfeea4d2c:/src/statusbar/mountpointobserver.cpp diff --git a/src/statusbar/mountpointobserver.cpp b/src/statusbar/mountpointobserver.cpp index df2a4898f..7dbe631b5 100644 --- a/src/statusbar/mountpointobserver.cpp +++ b/src/statusbar/mountpointobserver.cpp @@ -1,27 +1,15 @@ -/*************************************************************************** - * Copyright (C) 2014 by Frank Reininghaus * - * * - * 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 +/* + * SPDX-FileCopyrightText: 2014 Frank Reininghaus + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ #include "mountpointobserver.h" + #include "mountpointobservercache.h" +#include + 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); } }