Replace Qt with TQt

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/8/head
Michele Calgaro 1 year ago
parent 23ccf235ca
commit 6294e84359
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -52,7 +52,7 @@ void ConfDialog::setupTab1()
TQSpacerItem* spacer = new TQSpacerItem( 20, 20, TQSizePolicy::Minimum, TQSizePolicy::Expanding ); TQSpacerItem* spacer = new TQSpacerItem( 20, 20, TQSizePolicy::Minimum, TQSizePolicy::Expanding );
TQButtonGroup* group = new TQButtonGroup( box ); TQButtonGroup* group = new TQButtonGroup( box );
group->setColumnLayout(0, Qt::Vertical ); group->setColumnLayout(0, TQt::Vertical );
TQVBoxLayout* lgroup = new TQVBoxLayout( group->layout() ); TQVBoxLayout* lgroup = new TQVBoxLayout( group->layout() );
optionWizard = new TQRadioButton( group ); optionWizard = new TQRadioButton( group );

@ -58,7 +58,7 @@ void GUIModeSelector::createFrame( TQFrame* frame )
TQSpacerItem* spacer = new TQSpacerItem( 20, 20, TQSizePolicy::Minimum, TQSizePolicy::Expanding ); TQSpacerItem* spacer = new TQSpacerItem( 20, 20, TQSizePolicy::Minimum, TQSizePolicy::Expanding );
TQButtonGroup* group = new TQButtonGroup( frame ); TQButtonGroup* group = new TQButtonGroup( frame );
group->setColumnLayout(0, Qt::Vertical ); group->setColumnLayout(0, TQt::Vertical );
TQVBoxLayout* lgroup = new TQVBoxLayout( group->layout() ); TQVBoxLayout* lgroup = new TQVBoxLayout( group->layout() );
optionWizard = new TQRadioButton( group ); optionWizard = new TQRadioButton( group );

@ -422,7 +422,7 @@ void KRenameImpl::setupPage2()
groupOptions = new TQButtonGroup( page_2 ); groupOptions = new TQButtonGroup( page_2 );
groupOptions->setTitle( i18n( "O&ptions" ) ); groupOptions->setTitle( i18n( "O&ptions" ) );
groupOptions->setColumnLayout(0, Qt::Vertical ); groupOptions->setColumnLayout(0, TQt::Vertical );
groupOptions->layout()->setSpacing( 6 ); groupOptions->layout()->setSpacing( 6 );
groupOptions->layout()->setMargin( 11 ); groupOptions->layout()->setMargin( 11 );
groupOptionsLayout = new TQVBoxLayout( groupOptions->layout() ); groupOptionsLayout = new TQVBoxLayout( groupOptions->layout() );

@ -73,7 +73,7 @@ void MyDirPlugin::drawInterface( TQWidget* w, TQVBoxLayout* l )
groupNumber = new TQGroupBox( w ); groupNumber = new TQGroupBox( w );
groupNumber->setTitle( i18n( "&Options" ) ); groupNumber->setTitle( i18n( "&Options" ) );
groupNumber->setColumnLayout(0, Qt::Vertical ); groupNumber->setColumnLayout(0, TQt::Vertical );
groupNumber->layout()->setSpacing( 6 ); groupNumber->layout()->setSpacing( 6 );
groupNumber->layout()->setMargin( 11 ); groupNumber->layout()->setMargin( 11 );
groupNumberLayout = new TQHBoxLayout( groupNumber->layout() ); groupNumberLayout = new TQHBoxLayout( groupNumber->layout() );
@ -103,7 +103,7 @@ void MyDirPlugin::drawInterface( TQWidget* w, TQVBoxLayout* l )
groupOutput = new TQGroupBox( w ); groupOutput = new TQGroupBox( w );
groupOutput->setTitle( i18n( "Output &Directory" ) ); groupOutput->setTitle( i18n( "Output &Directory" ) );
groupOutput->setColumnLayout(0, Qt::Vertical ); groupOutput->setColumnLayout(0, TQt::Vertical );
groupOutput->layout()->setSpacing( 6 ); groupOutput->layout()->setSpacing( 6 );
groupOutput->layout()->setMargin( 11 ); groupOutput->layout()->setMargin( 11 );
groupOutputLayout = new TQHBoxLayout( groupOutput->layout() ); groupOutputLayout = new TQHBoxLayout( groupOutput->layout() );

@ -46,7 +46,7 @@ NumberDialog::NumberDialog(TQValueList<int> & n,TQWidget *parent )
TQGroupBox* group1 = new TQGroupBox( plainPage() ); TQGroupBox* group1 = new TQGroupBox( plainPage() );
group1->setTitle( i18n("&Numbering") ); group1->setTitle( i18n("&Numbering") );
group1->setColumnLayout(0, Qt::Vertical ); group1->setColumnLayout(0, TQt::Vertical );
group1->layout()->setSpacing( 6 ); group1->layout()->setSpacing( 6 );
group1->layout()->setMargin( 11 ); group1->layout()->setMargin( 11 );
TQVBoxLayout* group1Layout = new TQVBoxLayout( group1->layout() ); TQVBoxLayout* group1Layout = new TQVBoxLayout( group1->layout() );
@ -65,7 +65,7 @@ NumberDialog::NumberDialog(TQValueList<int> & n,TQWidget *parent )
TQGroupBox* group2 = new TQGroupBox( plainPage() ); TQGroupBox* group2 = new TQGroupBox( plainPage() );
group2->setTitle( i18n("S&kip Numbers") ); group2->setTitle( i18n("S&kip Numbers") );
group2->setColumnLayout(0, Qt::Horizontal ); group2->setColumnLayout(0, TQt::Horizontal );
group2->layout()->setSpacing( 6 ); group2->layout()->setSpacing( 6 );
group2->layout()->setMargin( 11 ); group2->layout()->setMargin( 11 );
TQHBoxLayout* group2Layout = new TQHBoxLayout( group2->layout() ); TQHBoxLayout* group2Layout = new TQHBoxLayout( group2->layout() );

@ -136,7 +136,7 @@ void MyPermPlugin::drawInterface( TQWidget* w, TQVBoxLayout* l )
groupOwner = new TQGroupBox ( i18n("Ownership"), w ); groupOwner = new TQGroupBox ( i18n("Ownership"), w );
groupOwner->setEnabled( FALSE ); groupOwner->setEnabled( FALSE );
groupOwner->setColumnLayout(0, Qt::Vertical ); groupOwner->setColumnLayout(0, TQt::Vertical );
groupOwner->layout()->setSpacing( 6 ); groupOwner->layout()->setSpacing( 6 );
groupOwner->layout()->setMargin( 11 ); groupOwner->layout()->setMargin( 11 );
groupOwnerLayout = new TQVBoxLayout( groupOwner->layout() ); groupOwnerLayout = new TQVBoxLayout( groupOwner->layout() );

Loading…
Cancel
Save