diff options
Diffstat (limited to 'wizards/groupwarewizard.cpp')
-rw-r--r-- | wizards/groupwarewizard.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wizards/groupwarewizard.cpp b/wizards/groupwarewizard.cpp index d023a8d71..48ac3b5a7 100644 --- a/wizards/groupwarewizard.cpp +++ b/wizards/groupwarewizard.cpp @@ -33,14 +33,14 @@ GroupwareWizard::GroupwareWizard( TQWidget *parent, const char *name ) { setCaption( i18n( "KDE Groupware Wizard" ) ); - TQVBoxLayout *layout = new TQVBoxLayout( this ); + TQVBoxLayout *tqlayout = new TQVBoxLayout( this ); mOverViewPage = new OverViewPage( this ); - layout->addWidget( mOverViewPage ); + tqlayout->addWidget( mOverViewPage ); connect( mOverViewPage, TQT_SIGNAL( cancel() ), - qApp, TQT_SLOT( quit() ) ); + tqApp, TQT_SLOT( quit() ) ); resize( 400, 200 ); } |