X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/283f97ac27c3cfe5c72682b0843503e31643a612..c8d8556950005dfd96ebdb41d2f43ad90356367c:/src/views/dolphinviewactionhandler.cpp diff --git a/src/views/dolphinviewactionhandler.cpp b/src/views/dolphinviewactionhandler.cpp index f765b4a09..caa35230a 100644 --- a/src/views/dolphinviewactionhandler.cpp +++ b/src/views/dolphinviewactionhandler.cpp @@ -69,7 +69,7 @@ void DolphinViewActionHandler::setCurrentView(DolphinView* view) QList)), this, SLOT(slotAdditionalInfoListChanged(QList, QList))); - connect(view, SIGNAL(categorizedSortingChanged(bool)), + connect(view, SIGNAL(groupedSortingChanged(bool)), this, SLOT(slotGroupedSortingChanged(bool))); connect(view, SIGNAL(hiddenFilesShownChanged(bool)), this, SLOT(slotHiddenFilesShownChanged(bool))); @@ -314,6 +314,9 @@ QString DolphinViewActionHandler::currentViewModeActionName() const return "details"; case DolphinView::CompactView: return "compact"; + default: + Q_ASSERT(false); + break; } return QString(); // can't happen }