From 5f5ee2367157176ed223b86343eb0a9e4022e020 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:52:55 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1157653 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kdf/optiondialog.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'kdf/optiondialog.cpp') diff --git a/kdf/optiondialog.cpp b/kdf/optiondialog.cpp index 05c5570..8da8dc2 100644 --- a/kdf/optiondialog.cpp +++ b/kdf/optiondialog.cpp @@ -17,29 +17,29 @@ * */ -#include +#include #include "kdfconfig.h" #include "mntconfig.h" #include "optiondialog.h" -COptionDialog::COptionDialog( QWidget *parent, const char *name, bool modal ) +COptionDialog::COptionDialog( TQWidget *parent, const char *name, bool modal ) :KDialogBase( Tabbed, i18n("Configure"), Help|Apply|Ok|Cancel, Ok, parent, name, modal ) { - setHelp( "kcontrol/kdf/index.html", QString::null ); + setHelp( "kcontrol/kdf/index.html", TQString::null ); - QFrame *f1 = addPage( i18n("General Settings") ); - QVBoxLayout *l1 = new QVBoxLayout( f1 ); + TQFrame *f1 = addPage( i18n("General Settings") ); + TQVBoxLayout *l1 = new TQVBoxLayout( f1 ); mConf = new KDFConfigWidget( f1, "kdfconf" ); l1->addWidget(mConf); - connect( mConf, SIGNAL( configChanged() ), this, SLOT( slotChanged() ) ); + connect( mConf, TQT_SIGNAL( configChanged() ), this, TQT_SLOT( slotChanged() ) ); - QFrame *f2 = addPage( i18n("Mount Commands") ); - QVBoxLayout *l2 = new QVBoxLayout( f2 ); + TQFrame *f2 = addPage( i18n("Mount Commands") ); + TQVBoxLayout *l2 = new TQVBoxLayout( f2 ); mMnt = new MntConfigWidget( f2, "mntconf"); l2->addWidget(mMnt); - connect( mMnt, SIGNAL( configChanged() ), this, SLOT( slotChanged() ) ); + connect( mMnt, TQT_SIGNAL( configChanged() ), this, TQT_SLOT( slotChanged() ) ); enableButton( Apply, false ); dataChanged = false; } -- cgit v1.2.1