From: Elvis Angelaccio Date: Mon, 5 Mar 2018 20:56:15 +0000 (+0100) Subject: Revert "Fix some compile warnings" X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/2523442d4d67ac5a801728394653f38e0ee8a09a Revert "Fix some compile warnings" This reverts commit 533f050855a50212bba7be57a1590f9ce743e26d. D10995 has not been approved. --- diff --git a/src/dolphincontextmenu.cpp b/src/dolphincontextmenu.cpp index c35f442cb..94c1d7ce8 100644 --- a/src/dolphincontextmenu.cpp +++ b/src/dolphincontextmenu.cpp @@ -428,7 +428,6 @@ void DolphinContextMenu::addShowMenuBarAction() bool DolphinContextMenu::placeExists(const QUrl& url) const { - Q_UNUSED(url) // Creating up a PlacesItemModel to find out if 'url' is one of the Places // can be expensive because the model asks Solid for the devices which are // available, which can take some time. diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 462675c09..762e21f94 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -410,8 +410,6 @@ void DolphinMainWindow::closeEvent(QCloseEvent* event) case QDialogButtonBox::No: // Close only the current tab m_tabWidget->closeTab(); - // Do not quit, ignore quit event - // fall through default: event->ignore(); return; diff --git a/src/dolphintabwidget.cpp b/src/dolphintabwidget.cpp index 8b13cebe6..0271ed568 100644 --- a/src/dolphintabwidget.cpp +++ b/src/dolphintabwidget.cpp @@ -92,10 +92,7 @@ void DolphinTabWidget::readProperties(const KConfigGroup& group) } else { // Tab state created with Dolphin <= 4.14.x const QByteArray state = group.readEntry("Tab " % QString::number(i), QByteArray()); -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wdeprecated-declarations" tabPageAt(i)->restoreStateV1(state); -#pragma GCC diagnostic pop } } diff --git a/src/kitemviews/kfileitemmodel.cpp b/src/kitemviews/kfileitemmodel.cpp index b6a001642..d4f356125 100644 --- a/src/kitemviews/kfileitemmodel.cpp +++ b/src/kitemviews/kfileitemmodel.cpp @@ -246,6 +246,7 @@ QMimeData* KFileItemModel::createMimeData(const KItemSet& indexes) const // Copyright (C) 2006 David Faure QList urls; QList mostLocalUrls; + bool canUseMostLocalUrls = true; const ItemData* lastAddedItem = nullptr; for (int index : indexes) { @@ -268,6 +269,9 @@ QMimeData* KFileItemModel::createMimeData(const KItemSet& indexes) const bool isLocal; mostLocalUrls << item.mostLocalUrl(isLocal); + if (!isLocal) { + canUseMostLocalUrls = false; + } } } diff --git a/src/kitemviews/kitemlistcontroller.cpp b/src/kitemviews/kitemlistcontroller.cpp index 36d8e4671..672c31ae4 100644 --- a/src/kitemviews/kitemlistcontroller.cpp +++ b/src/kitemviews/kitemlistcontroller.cpp @@ -433,8 +433,8 @@ bool KItemListController::keyPressEvent(QKeyEvent* event) } } } - // fall through - // to the default case and add the Space to the current search string. + // Fall through to the default case and add the Space to the current search string. + default: m_keyboardManager->addKeys(event->text()); // Make sure unconsumed events get propagated up the chain. #302329