Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/finance/kmymoney/files/patch-kmymoney_plugins_kbanking_kbanking.h
16461 views
1
Prepend the C++14 [[deprecated]] attribute, which KMYMONEY_DEPRECATED
2
ultimately resolves to with Qt6 to prevent build errors.
3
4
--- kmymoney/plugins/kbanking/kbanking.h.orig 2025-08-04 11:03:25 UTC
5
+++ kmymoney/plugins/kbanking/kbanking.h
6
@@ -156,7 +156,8 @@ class KBanking : public KMyMoneyPlugin::OnlinePluginEx
7
*
8
* @deprecated
9
*/
10
- bool updateAccount(const MyMoneyAccount& acc) KMYMONEY_DEPRECATED;
11
+ KMYMONEY_DEPRECATED
12
+ bool updateAccount(const MyMoneyAccount& acc);
13
14
/**
15
* Trigger the password cache timer
16
17