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/plugins/exchange/exchangedialog.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'korganizer/plugins/exchange/exchangedialog.cpp') diff --git a/korganizer/plugins/exchange/exchangedialog.cpp b/korganizer/plugins/exchange/exchangedialog.cpp index 249b07a9..de56a3a1 100644 --- a/korganizer/plugins/exchange/exchangedialog.cpp +++ b/korganizer/plugins/exchange/exchangedialog.cpp @@ -17,9 +17,9 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#include -#include -#include +#include +#include +#include #include #include @@ -30,20 +30,20 @@ #include "exchangedialog.h" -ExchangeDialog::ExchangeDialog( const QDate &_start, const QDate &_end, QWidget *parent) +ExchangeDialog::ExchangeDialog( const TQDate &_start, const TQDate &_end, TQWidget *parent) : KDialogBase(Plain,i18n("Exchange Plugin"),Ok|Cancel,Ok,parent) { - QFrame *topFrame = plainPage(); - QGridLayout *topLayout = new QGridLayout( topFrame, 2, 2, 3 ); + TQFrame *topFrame = plainPage(); + TQGridLayout *topLayout = new TQGridLayout( topFrame, 2, 2, 3 ); - QLabel *label = new QLabel(i18n("Start date:"),topFrame); + TQLabel *label = new TQLabel(i18n("Start date:"),topFrame); topLayout->addWidget(label, 0, 0); m_start = new KDateWidget( _start, topFrame ); topLayout->addWidget( m_start, 0, 1 ); m_end = new KDateWidget( _end, topFrame ); - topLayout->addWidget( new QLabel( i18n( "End date:" ), topFrame ), 1, 0 ); + topLayout->addWidget( new TQLabel( i18n( "End date:" ), topFrame ), 1, 0 ); topLayout->addWidget( m_end, 1, 1 ); } -- cgit v1.2.3