diff options
author | Antonio Rojas <arojas@archlinux.org> | 2020-01-21 21:27:56 +0100 |
---|---|---|
committer | Antonio Rojas <arojas@archlinux.org> | 2020-01-21 21:27:56 +0100 |
commit | 68c1cfd0d8dcee761005a9eb08a57c224197fce2 (patch) | |
tree | 5050890301e27ac7737e523502ec5daa4221928c | |
parent | 3e287d5fa29b3933c672396684a1f0f58bbc5a32 (diff) | |
download | kconfig-68c1cfd0d8dcee761005a9eb08a57c224197fce2.tar.gz kconfig-68c1cfd0d8dcee761005a9eb08a57c224197fce2.tar.bz2 |
Fix python bindings build after ebd14f29f8052ff5119bf97b42e61f404f223615
The new API breaks python bindings compilation since sip can't understand KSharedConfig::Ptr type
Differential Revision: https://phabricator.kde.org/D26815
-rw-r--r-- | cmake/rules_PyKF5.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmake/rules_PyKF5.py b/cmake/rules_PyKF5.py index 35b3de5c..fea0982f 100644 --- a/cmake/rules_PyKF5.py +++ b/cmake/rules_PyKF5.py @@ -91,6 +91,7 @@ def local_function_rules(): ["KConfig", "groupImpl", ".*", "const KConfigGroup", ".*", rules_engine.function_discard], ["KSharedConfig", "openConfig", ".*", ".*", ".*", rules_engine.function_discard], + ["KSharedConfig", "openStateConfig", ".*", ".*", ".*", rules_engine.function_discard], ["KConfigGroup", "KConfigGroup", ".*", ".*", ".*KConfigBase.*", rules_engine.function_discard], ["KConfigGroup", "config", ".*", "const KConfig.*", ".*", rules_engine.function_discard], |