summaryrefslogtreecommitdiffstats
path: root/korganizer/plugins/exchange/exchangedialog.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /korganizer/plugins/exchange/exchangedialog.cpp
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'korganizer/plugins/exchange/exchangedialog.cpp')
-rw-r--r--korganizer/plugins/exchange/exchangedialog.cpp16
1 files changed, 8 insertions, 8 deletions
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 <qlayout.h>
-#include <qlabel.h>
-#include <qcombobox.h>
+#include <tqlayout.h>
+#include <tqlabel.h>
+#include <tqcombobox.h>
#include <klocale.h>
#include <kmessagebox.h>
@@ -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 );
}