]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/views/dolphinviewactionhandler.cpp
Drop obsolete KF5 version check
[dolphin.git] / src / views / dolphinviewactionhandler.cpp
index 2c3515062744fa051e4b811603400318634645ab..610b768c1366acc015994b2d91d5146e59592e47 100644 (file)
@@ -11,6 +11,7 @@
 #include "kitemviews/kfileitemmodel.h"
 #include "settings/viewpropertiesdialog.h"
 #include "views/zoomlevelinfo.h"
+#include "kconfig_version.h"
 
 #ifdef HAVE_BALOO
 #include <Baloo/IndexerConfig>
@@ -78,11 +79,7 @@ void DolphinViewActionHandler::createActions()
     // KNewFileMenu takes care of the GUI stuff.
     QAction* newDirAction = m_actionCollection->addAction(QStringLiteral("create_dir"));
     newDirAction->setText(i18nc("@action", "Create Folder..."));
-#if KCONFIG_VERSION >= QT_VERSION_CHECK(5, 74, 0)
     m_actionCollection->setDefaultShortcuts(newDirAction, KStandardShortcut::createFolder());
-#else
-    m_actionCollection->setDefaultShortcut(newDirAction, Qt::Key_F10);
-#endif
     newDirAction->setIcon(QIcon::fromTheme(QStringLiteral("folder-new")));
     newDirAction->setEnabled(false);    // Will be enabled in slotWriteStateChanged(bool) if the current URL is writable
     connect(newDirAction, &QAction::triggered, this, &DolphinViewActionHandler::createDirectoryTriggered);