aboutsummaryrefslogtreecommitdiff
path: root/autotests/kconfig_compiler/test13.cpp.ref
diff options
context:
space:
mode:
Diffstat (limited to 'autotests/kconfig_compiler/test13.cpp.ref')
-rw-r--r--autotests/kconfig_compiler/test13.cpp.ref3
1 files changed, 3 insertions, 0 deletions
diff --git a/autotests/kconfig_compiler/test13.cpp.ref b/autotests/kconfig_compiler/test13.cpp.ref
index 3beea1d0..0f62dc96 100644
--- a/autotests/kconfig_compiler/test13.cpp.ref
+++ b/autotests/kconfig_compiler/test13.cpp.ref
@@ -16,6 +16,9 @@ Test13::Test13( )
KConfigCompilerSignallingItem *itemBrightness;
itemBrightness = new KConfigCompilerSignallingItem(new KConfigSkeleton::ItemDouble( currentGroup(), QStringLiteral( "brightness" ), mBrightness ), this, notifyFunction, signalBrightnessChanged);
addItem( itemBrightness, QStringLiteral( "brightness" ) );
+ KConfigSkeleton::ItemBool *itemStartsWithUppercase;
+ itemStartsWithUppercase = new KConfigSkeleton::ItemBool( currentGroup(), QStringLiteral( "StartsWithUppercase" ), mStartsWithUppercase );
+ addItem( itemStartsWithUppercase, QStringLiteral( "StartsWithUppercase" ) );
}
Test13::~Test13()