diff options
Diffstat (limited to 'autotests/kconfig_compiler/test5.cpp.ref')
-rw-r--r-- | autotests/kconfig_compiler/test5.cpp.ref | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/autotests/kconfig_compiler/test5.cpp.ref b/autotests/kconfig_compiler/test5.cpp.ref index dfa27f3b..2ee3dbfd 100644 --- a/autotests/kconfig_compiler/test5.cpp.ref +++ b/autotests/kconfig_compiler/test5.cpp.ref @@ -28,9 +28,10 @@ Test5 *Test5::self() const char* const Test5::EnumButtonToString[] = { "right", "mid", "left" }; -Test5::Test5( ) +Test5::Test5( QObject *parent ) : KConfigSkeleton( QStringLiteral( "test4rc" ) ) { + setParent(parent); Q_ASSERT(!s_globalTest5()->q); s_globalTest5()->q = this; setCurrentGroup( QStringLiteral( "Foo" ) ); |