summaryrefslogtreecommitdiff
path: root/kde-apps/krdc/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-08-25 10:45:55 +0100
committerV3n3RiX <venerix@redcorelinux.org>2020-08-25 10:45:55 +0100
commit3cf7c3ef441822c889356fd1812ebf2944a59851 (patch)
treec513fe68548b40365c1c2ebfe35c58ad431cdd77 /kde-apps/krdc/files
parent05b8b0e0af1d72e51a3ee61522941bf7605cd01c (diff)
gentoo resync : 25.08.2020
Diffstat (limited to 'kde-apps/krdc/files')
-rw-r--r--kde-apps/krdc/files/krdc-19.12.3-kf5bookmarks-5.69.patch48
1 files changed, 0 insertions, 48 deletions
diff --git a/kde-apps/krdc/files/krdc-19.12.3-kf5bookmarks-5.69.patch b/kde-apps/krdc/files/krdc-19.12.3-kf5bookmarks-5.69.patch
deleted file mode 100644
index 03dc0059147a..000000000000
--- a/kde-apps/krdc/files/krdc-19.12.3-kf5bookmarks-5.69.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-From 70e9d2728a4928dd2aeb170935d966e934315cf4 Mon Sep 17 00:00:00 2001
-From: Ahmad Samir <a.samirh78@gmail.com>
-Date: Fri, 17 Apr 2020 15:52:15 +0200
-Subject: Adapt to changes in KBookmarks >= 5.69
-
-Test Plan:
-The Bookmarks menu is still added as expected and the actions still show
-in the configure shortcuts dialog. I couldn't test actually creating a
-bookmark as I have no access to remote servers.
-
-Reviewers: cfeck, uwolfer, murrant
-
-Reviewed By: cfeck
-
-Differential Revision: https://phabricator.kde.org/D28920
----
- bookmarkmanager.cpp | 7 +++++++
- 1 file changed, 7 insertions(+)
-
-diff --git a/bookmarkmanager.cpp b/bookmarkmanager.cpp
-index 47ac779..a34cb2c 100644
---- a/bookmarkmanager.cpp
-+++ b/bookmarkmanager.cpp
-@@ -25,6 +25,7 @@
- #include "mainwindow.h"
- #include "krdc_debug.h"
-
-+#include <kbookmarks_version.h>
- #include <KBookmarks/KBookmarkOwner>
- #include <KLocalizedString>
-
-@@ -41,7 +42,13 @@ BookmarkManager::BookmarkManager(KActionCollection *collection, QMenu *menu, Mai
-
- m_manager = KBookmarkManager::managerForFile(file, QLatin1String("krdc"));
- m_manager->setUpdate(true);
-+
-+#if KBOOKMARKS_VERSION < QT_VERSION_CHECK(5, 69, 0)
- m_bookmarkMenu = new KBookmarkMenu(m_manager, this, menu, collection);
-+#else
-+ m_bookmarkMenu = new KBookmarkMenu(m_manager, this, menu);
-+ collection->addActions(menu->actions());
-+#endif
-
- KBookmarkGroup root = m_manager->root();
- KBookmark bm = root.first();
---
-cgit v1.1
-