From 7be55ffa061c026e35e2d6a0effe1161ddb0d41f Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:53:50 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- korganizer/importdialog.cpp | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'korganizer/importdialog.cpp') diff --git a/korganizer/importdialog.cpp b/korganizer/importdialog.cpp index a07d0ef1c..f1181225d 100644 --- a/korganizer/importdialog.cpp +++ b/korganizer/importdialog.cpp @@ -30,36 +30,36 @@ #include -#include -#include -#include -#include +#include +#include +#include +#include using namespace KCal; -ImportDialog::ImportDialog( const KURL &url, QWidget *parent ) +ImportDialog::ImportDialog( const KURL &url, TQWidget *parent ) : KDialogBase( Plain, i18n("Import Calendar"), Ok | Cancel, Ok, parent, 0, true, true ), mUrl( url ) { - QFrame *topFrame = plainPage(); - QVBoxLayout *topLayout = new QVBoxLayout( topFrame, 0, spacingHint() ); + TQFrame *topFrame = plainPage(); + TQVBoxLayout *topLayout = new TQVBoxLayout( topFrame, 0, spacingHint() ); - QString txt = i18n("Import calendar at '%1' into KOrganizer.") + TQString txt = i18n("Import calendar at '%1' into KOrganizer.") .arg( mUrl.prettyURL() ); - topLayout->addWidget( new QLabel( txt, topFrame ) ); + topLayout->addWidget( new TQLabel( txt, topFrame ) ); - QButtonGroup *radioBox = new QButtonGroup( 1, Horizontal, topFrame ); + TQButtonGroup *radioBox = new TQButtonGroup( 1, Horizontal, topFrame ); radioBox->setFlat( true ); topLayout->addWidget( radioBox ); - mAddButton = new QRadioButton( i18n("Add as new calendar"), radioBox ); + mAddButton = new TQRadioButton( i18n("Add as new calendar"), radioBox ); - mMergeButton = new QRadioButton( i18n("Merge into existing calendar"), + mMergeButton = new TQRadioButton( i18n("Merge into existing calendar"), radioBox ); - mOpenButton = new QRadioButton( i18n("Open in separate window"), radioBox ); + mOpenButton = new TQRadioButton( i18n("Open in separate window"), radioBox ); mAddButton->setChecked( true ); } -- cgit v1.2.1