summaryrefslogtreecommitdiffstats
path: root/kde/patch/ktp-accounts-kcm
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2020-07-31 16:13:18 +0200
committer Eric Hameleers <alien@slackware.com>2020-07-31 16:13:18 +0200
commit703149752c6265b36973d2c1f0f5a69721e3128a (patch)
tree7ded0d801771d5705f48ffbfb48f37dd4829439e /kde/patch/ktp-accounts-kcm
parentdd005500c624d127321ff3fe14a0c29bfa8d67f7 (diff)
parentcd7ff1719433fbb3b6a8304596be173bc1b91b00 (diff)
downloadktown-master.tar.gz
ktown-master.tar.xz
Merge branch 'elogind'HEADmaster
Diffstat (limited to 'kde/patch/ktp-accounts-kcm')
-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);
- }
- }
- }
-