diff options
Diffstat (limited to 'autotests/kconfig_compiler/test1.cpp.ref')
-rw-r--r-- | autotests/kconfig_compiler/test1.cpp.ref | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/autotests/kconfig_compiler/test1.cpp.ref b/autotests/kconfig_compiler/test1.cpp.ref index f0432d45..c0d94eef 100644 --- a/autotests/kconfig_compiler/test1.cpp.ref +++ b/autotests/kconfig_compiler/test1.cpp.ref @@ -3,11 +3,12 @@ #include "test1.h" -Test1::Test1( const QString & transport, const QString & folder ) +Test1::Test1( const QString & transport, const QString & folder, QObject *parent ) : KConfigSkeleton( QStringLiteral( "examplerc" ) ) , mParamtransport(transport) , mParamfolder(folder) { + setParent(parent); setCurrentGroup( QStringLiteral( "General-%1" ).arg( mParamfolder ) ); KConfigSkeleton::ItemBool *itemOneOption; |