summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 15:26:48 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 22:43:13 +0900
commit5d02ccb1c9ea915c3783a3c139cc4713c3c2c4cb (patch)
treec12b289bce73b8769043e21af91174cc350408e2
parent6f80ce0b812dbd1f926bb47b49d776b5b82b80df (diff)
downloadkrename-5d02ccb1.tar.gz
krename-5d02ccb1.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 6294e84359b697355b84bc795208a8d0a9276008)
-rw-r--r--krename/confdialog.cpp2
-rw-r--r--krename/guimodeselector.cpp2
-rw-r--r--krename/krenameimpl.cpp2
-rw-r--r--krename/mydirplugin.cpp4
-rw-r--r--krename/numberdialog.cpp4
-rw-r--r--krename/permission.cpp2
6 files changed, 8 insertions, 8 deletions
diff --git a/krename/confdialog.cpp b/krename/confdialog.cpp
index 07a7794..2a7ee2a 100644
--- a/krename/confdialog.cpp
+++ b/krename/confdialog.cpp
@@ -52,7 +52,7 @@ void ConfDialog::setupTab1()
TQSpacerItem* spacer = new TQSpacerItem( 20, 20, TQSizePolicy::Minimum, TQSizePolicy::Expanding );
TQButtonGroup* group = new TQButtonGroup( box );
- group->setColumnLayout(0, Qt::Vertical );
+ group->setColumnLayout(0, TQt::Vertical );
TQVBoxLayout* lgroup = new TQVBoxLayout( group->layout() );
optionWizard = new TQRadioButton( group );
diff --git a/krename/guimodeselector.cpp b/krename/guimodeselector.cpp
index b81f9d9..c086ce6 100644
--- a/krename/guimodeselector.cpp
+++ b/krename/guimodeselector.cpp
@@ -58,7 +58,7 @@ void GUIModeSelector::createFrame( TQFrame* frame )
TQSpacerItem* spacer = new TQSpacerItem( 20, 20, TQSizePolicy::Minimum, TQSizePolicy::Expanding );
TQButtonGroup* group = new TQButtonGroup( frame );
- group->setColumnLayout(0, Qt::Vertical );
+ group->setColumnLayout(0, TQt::Vertical );
TQVBoxLayout* lgroup = new TQVBoxLayout( group->layout() );
optionWizard = new TQRadioButton( group );
diff --git a/krename/krenameimpl.cpp b/krename/krenameimpl.cpp
index e62c81c..783ac67 100644
--- a/krename/krenameimpl.cpp
+++ b/krename/krenameimpl.cpp
@@ -422,7 +422,7 @@ void KRenameImpl::setupPage2()
groupOptions = new TQButtonGroup( page_2 );
groupOptions->setTitle( i18n( "O&ptions" ) );
- groupOptions->setColumnLayout(0, Qt::Vertical );
+ groupOptions->setColumnLayout(0, TQt::Vertical );
groupOptions->layout()->setSpacing( 6 );
groupOptions->layout()->setMargin( 11 );
groupOptionsLayout = new TQVBoxLayout( groupOptions->layout() );
diff --git a/krename/mydirplugin.cpp b/krename/mydirplugin.cpp
index fd877ef..69ef254 100644
--- a/krename/mydirplugin.cpp
+++ b/krename/mydirplugin.cpp
@@ -73,7 +73,7 @@ void MyDirPlugin::drawInterface( TQWidget* w, TQVBoxLayout* l )
groupNumber = new TQGroupBox( w );
groupNumber->setTitle( i18n( "&Options" ) );
- groupNumber->setColumnLayout(0, Qt::Vertical );
+ groupNumber->setColumnLayout(0, TQt::Vertical );
groupNumber->layout()->setSpacing( 6 );
groupNumber->layout()->setMargin( 11 );
groupNumberLayout = new TQHBoxLayout( groupNumber->layout() );
@@ -103,7 +103,7 @@ void MyDirPlugin::drawInterface( TQWidget* w, TQVBoxLayout* l )
groupOutput = new TQGroupBox( w );
groupOutput->setTitle( i18n( "Output &Directory" ) );
- groupOutput->setColumnLayout(0, Qt::Vertical );
+ groupOutput->setColumnLayout(0, TQt::Vertical );
groupOutput->layout()->setSpacing( 6 );
groupOutput->layout()->setMargin( 11 );
groupOutputLayout = new TQHBoxLayout( groupOutput->layout() );
diff --git a/krename/numberdialog.cpp b/krename/numberdialog.cpp
index 661e713..3e0fc8b 100644
--- a/krename/numberdialog.cpp
+++ b/krename/numberdialog.cpp
@@ -46,7 +46,7 @@ NumberDialog::NumberDialog(TQValueList<int> & n,TQWidget *parent )
TQGroupBox* group1 = new TQGroupBox( plainPage() );
group1->setTitle( i18n("&Numbering") );
- group1->setColumnLayout(0, Qt::Vertical );
+ group1->setColumnLayout(0, TQt::Vertical );
group1->layout()->setSpacing( 6 );
group1->layout()->setMargin( 11 );
TQVBoxLayout* group1Layout = new TQVBoxLayout( group1->layout() );
@@ -65,7 +65,7 @@ NumberDialog::NumberDialog(TQValueList<int> & n,TQWidget *parent )
TQGroupBox* group2 = new TQGroupBox( plainPage() );
group2->setTitle( i18n("S&kip Numbers") );
- group2->setColumnLayout(0, Qt::Horizontal );
+ group2->setColumnLayout(0, TQt::Horizontal );
group2->layout()->setSpacing( 6 );
group2->layout()->setMargin( 11 );
TQHBoxLayout* group2Layout = new TQHBoxLayout( group2->layout() );
diff --git a/krename/permission.cpp b/krename/permission.cpp
index 8bb3a8c..2fb9c03 100644
--- a/krename/permission.cpp
+++ b/krename/permission.cpp
@@ -136,7 +136,7 @@ void MyPermPlugin::drawInterface( TQWidget* w, TQVBoxLayout* l )
groupOwner = new TQGroupBox ( i18n("Ownership"), w );
groupOwner->setEnabled( FALSE );
- groupOwner->setColumnLayout(0, Qt::Vertical );
+ groupOwner->setColumnLayout(0, TQt::Vertical );
groupOwner->layout()->setSpacing( 6 );
groupOwner->layout()->setMargin( 11 );
groupOwnerLayout = new TQVBoxLayout( groupOwner->layout() );