aboutsummaryrefslogtreecommitdiff
path: root/src/kconfig_compiler
diff options
context:
space:
mode:
authorHenri Chain <henri.chain@enioka.com>2020-02-28 09:53:54 +0100
committerHenri Chain <henri.chain@enioka.com>2020-02-28 09:57:48 +0100
commitf98feb16981350480bdb292cf157f70005d5be12 (patch)
treeadf32c3c6553791d2f2155c3dc39ca700dd274d5 /src/kconfig_compiler
parented960455a112f455695d85b1b5407db22a3369e7 (diff)
downloadkconfig-f98feb16981350480bdb292cf157f70005d5be12.tar.gz
kconfig-f98feb16981350480bdb292cf157f70005d5be12.tar.bz2
fix min/max entries with dpointer
Summary: D27497 was causing cases with dpointer + min/max to fail Specifically, this okular build: https://build.kde.org/job/Applications/job/okular/job/kf5-qt5 SUSEQt5.12/175/console Test Plan: Added min/max to dpointer autotest Reviewers: meven, ervin Subscribers: kde-frameworks-devel, aacid Tags: #frameworks Differential Revision: https://phabricator.kde.org/D27717
Diffstat (limited to 'src/kconfig_compiler')
-rw-r--r--src/kconfig_compiler/kconfig_compiler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kconfig_compiler/kconfig_compiler.cpp b/src/kconfig_compiler/kconfig_compiler.cpp
index 4e76f375..f4349420 100644
--- a/src/kconfig_compiler/kconfig_compiler.cpp
+++ b/src/kconfig_compiler/kconfig_compiler.cpp
@@ -440,7 +440,7 @@ QString itemVar(const CfgEntry *e, const KConfigParameters &cfg)
QString innerItemVar(const CfgEntry *e, const KConfigParameters &cfg)
{
if (e->signalList.isEmpty()) {
- return itemVar(e, cfg);
+ return itemPath(e, cfg);
} else {
QString result = "innerItem" + e->name;
result[9] = result[9].toUpper();