summaryrefslogtreecommitdiffstats
path: root/korganizer/plugins/exchange/exchangedialog.cpp
diff options
context:
space:
mode:
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 );
}