X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/2647dc47d4ba636e4d1dc350bc48c7983ba0fc93..fc6ea0e1d90ddba7df97f7b38f000ea795eadbef:/src/dbusinterface.cpp diff --git a/src/dbusinterface.cpp b/src/dbusinterface.cpp index 15016d2e0..fd2d229a2 100644 --- a/src/dbusinterface.cpp +++ b/src/dbusinterface.cpp @@ -39,7 +39,7 @@ DBusInterface::DBusInterface() : void DBusInterface::ShowFolders(const QStringList& uriList, const QString& startUpId) { - Q_UNUSED(startUpId); + Q_UNUSED(startUpId) const QList urls = Dolphin::validateUris(uriList); if (urls.isEmpty()) { return; @@ -52,7 +52,7 @@ void DBusInterface::ShowFolders(const QStringList& uriList, const QString& start void DBusInterface::ShowItems(const QStringList& uriList, const QString& startUpId) { - Q_UNUSED(startUpId); + Q_UNUSED(startUpId) const QList urls = Dolphin::validateUris(uriList); if (urls.isEmpty()) { return; @@ -65,7 +65,7 @@ void DBusInterface::ShowItems(const QStringList& uriList, const QString& startUp void DBusInterface::ShowItemProperties(const QStringList& uriList, const QString& startUpId) { - Q_UNUSED(startUpId); + Q_UNUSED(startUpId) const QList urls = Dolphin::validateUris(uriList); if (!urls.isEmpty()) { KPropertiesDialog::showDialog(urls);