summaryrefslogtreecommitdiffstats
path: root/amarok/src/transferdialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-04 23:31:50 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 20:46:25 +0900
commitf2d298973b6d05d676b8e343f8541c08754f934d (patch)
tree58947070e41dfcb45d399a34d6276ddc84b7912e /amarok/src/transferdialog.cpp
parent9e73bb2a5a64ca8c6787707a67695a2bc55f2b01 (diff)
downloadamarok-f2d29897.tar.gz
amarok-f2d29897.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 25db919b40a60e28a09ee456634e825de1f93327)
Diffstat (limited to 'amarok/src/transferdialog.cpp')
-rw-r--r--amarok/src/transferdialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/amarok/src/transferdialog.cpp b/amarok/src/transferdialog.cpp
index 499fa0a2..f8fedce4 100644
--- a/amarok/src/transferdialog.cpp
+++ b/amarok/src/transferdialog.cpp
@@ -42,7 +42,7 @@ TransferDialog::TransferDialog( MediaDevice *mdev )
TQString transferDir = mdev->getTransferDir();
- TQGroupBox *location = new TQGroupBox( 1, Qt::Vertical, i18n( "Music Location" ), vbox );
+ TQGroupBox *location = new TQGroupBox( 1, TQt::Vertical, i18n( "Music Location" ), vbox );
new TQLabel( i18n( "Your music will be transferred to:\n%1" )
.arg( transferDir ), location );
@@ -57,7 +57,7 @@ TransferDialog::TransferDialog( MediaDevice *mdev )
"a variety of ways. Each grouping will create\n"
"directories based upon the specified criteria.\n"), vbox );
- TQGroupBox *sorting = new TQGroupBox( 6, Qt::Vertical, i18n( "Groupings" ), vbox );
+ TQGroupBox *sorting = new TQGroupBox( 6, TQt::Vertical, i18n( "Groupings" ), vbox );
m_label1 = new TQLabel( i18n( "Select first grouping:\n" ), sorting );
m_sort1 = new KComboBox( sorting );
m_label2 = new TQLabel( i18n( "Select second grouping:\n" ), sorting );
@@ -98,7 +98,7 @@ TransferDialog::TransferDialog( MediaDevice *mdev )
if( vlayout2 )
vlayout2->addItem( spacer2 );
- TQGroupBox *options = new TQGroupBox( 6, Qt::Vertical, i18n( "Options" ), vbox );
+ TQGroupBox *options = new TQGroupBox( 6, TQt::Vertical, i18n( "Options" ), vbox );
TQCheckBox *convertSpaces = new TQCheckBox( i18n( "Convert spaces to underscores" ), options );
convertSpaces->setChecked( mdev->getSpacesToUnderscores() );