summaryrefslogtreecommitdiffstats
path: root/kde/patch/ktp-accounts-kcm/ktp-accounts-kcm_kdebug_351785.patch
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2020-07-30 19:45:19 +0200
committer Eric Hameleers <alien@slackware.com>2020-07-30 19:45:19 +0200
commit52b1f1cb9f8d4e1fb1fcbde59930a105a819b0b4 (patch)
tree22f1205f0276563548f2864997c82a8af7307fcd /kde/patch/ktp-accounts-kcm/ktp-accounts-kcm_kdebug_351785.patch
parent42f29689f597520389829b6d22c56ee21ace7657 (diff)
downloadktown-52b1f1cb9f8d4e1fb1fcbde59930a105a819b0b4.tar.gz
ktown-52b1f1cb9f8d4e1fb1fcbde59930a105a819b0b4.tar.xz
Cleanup unused KDE patches
Thanks to Patrick Volkerding for the effort.
Diffstat (limited to 'kde/patch/ktp-accounts-kcm/ktp-accounts-kcm_kdebug_351785.patch')
-rw-r--r--kde/patch/ktp-accounts-kcm/ktp-accounts-kcm_kdebug_351785.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/kde/patch/ktp-accounts-kcm/ktp-accounts-kcm_kdebug_351785.patch b/kde/patch/ktp-accounts-kcm/ktp-accounts-kcm_kdebug_351785.patch
deleted file mode 100644
index aa77aae..0000000
--- a/kde/patch/ktp-accounts-kcm/ktp-accounts-kcm_kdebug_351785.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From: Martin Klapetek <mklapetek@kde.org>
-Date: Thu, 17 Sep 2015 16:11:30 +0000
-Subject: [kaccounts] Emit configUiReady() when config UI is ready
-X-Git-Url: http://quickgit.kde.org/?p=ktp-accounts-kcm.git&a=commitdiff&h=07c7cc5309e11171b2e552678d58257ccfc44e42
----
-[kaccounts] Emit configUiReady() when config UI is ready
-
-Should prevent the crash when clicking the Configure button
-
-(requires kaccounts-integration 15.08.2)
-
-BUG: 351785
-FIXED-IN: 15.08.2
----
-
-
---- a/plugins/kaccounts/kaccounts-ui-provider.cpp
-+++ b/plugins/kaccounts/kaccounts-ui-provider.cpp
-@@ -106,10 +106,10 @@
-
- if (d->type == KAccountsUiPlugin::ConfigureAccountDialog) {
- if (d->accountManager->isReady()) {
-- Q_EMIT uiReady();
-+ Q_EMIT configUiReady();
- } else {
- // let's wait for AM to become ready first
-- connect(d->accountManager->becomeReady(), &Tp::PendingOperation::finished, this, &KAccountsUiProvider::uiReady);
-+ connect(d->accountManager->becomeReady(), &Tp::PendingOperation::finished, this, &KAccountsUiProvider::configUiReady);
- }
- }
- }
-