summaryrefslogtreecommitdiffstats
path: root/korganizer/freebusyurldialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'korganizer/freebusyurldialog.cpp')
-rw-r--r--korganizer/freebusyurldialog.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/korganizer/freebusyurldialog.cpp b/korganizer/freebusyurldialog.cpp
index 39e4c14e..61165545 100644
--- a/korganizer/freebusyurldialog.cpp
+++ b/korganizer/freebusyurldialog.cpp
@@ -32,17 +32,17 @@
#include <kdebug.h>
#include <kstandarddirs.h>
-#include <qlayout.h>
-#include <qlabel.h>
+#include <tqlayout.h>
+#include <tqlabel.h>
-FreeBusyUrlDialog::FreeBusyUrlDialog( KCal::Attendee *attendee, QWidget *parent,
+FreeBusyUrlDialog::FreeBusyUrlDialog( KCal::Attendee *attendee, TQWidget *parent,
const char *name )
: KDialogBase( Plain, i18n("Edit Free/Busy Location"), Ok|Cancel, Ok, parent,
name, true, false )
{
- QFrame *topFrame = plainPage();
+ TQFrame *topFrame = plainPage();
- QBoxLayout *topLayout = new QVBoxLayout( topFrame, 0, spacingHint() );
+ TQBoxLayout *topLayout = new TQVBoxLayout( topFrame, 0, spacingHint() );
mWidget = new FreeBusyUrlWidget( attendee, topFrame );
topLayout->addWidget( mWidget );
@@ -57,14 +57,14 @@ void FreeBusyUrlDialog::slotOk()
}
-FreeBusyUrlWidget::FreeBusyUrlWidget( KCal::Attendee *attendee, QWidget *parent,
+FreeBusyUrlWidget::FreeBusyUrlWidget( KCal::Attendee *attendee, TQWidget *parent,
const char *name )
- : QWidget( parent, name ), mAttendee( attendee )
+ : TQWidget( parent, name ), mAttendee( attendee )
{
- QBoxLayout *topLayout = new QVBoxLayout( this );
+ TQBoxLayout *topLayout = new TQVBoxLayout( this );
topLayout->setSpacing( KDialog::spacingHint() );
- QLabel *label = new QLabel(
+ TQLabel *label = new TQLabel(
i18n("Location of Free/Busy information for %1 <%2>:")
.arg( mAttendee->name() ).arg( mAttendee->email() ), this );
topLayout->addWidget( label );
@@ -81,7 +81,7 @@ void FreeBusyUrlWidget::loadConfig()
{
kdDebug(5850) << "FreeBusyUrlWidget::loadConfig()" << endl;
- QString url = KCal::FreeBusyUrlStore::self()->readUrl( mAttendee->email() );
+ TQString url = KCal::FreeBusyUrlStore::self()->readUrl( mAttendee->email() );
mUrlEdit->setText( url );
}
@@ -90,7 +90,7 @@ void FreeBusyUrlWidget::saveConfig()
{
kdDebug(5850) << "FreeBusyUrlWidget::saveConfig()" << endl;
- QString url = mUrlEdit->text();
+ TQString url = mUrlEdit->text();
KCal::FreeBusyUrlStore::self()->writeUrl( mAttendee->email(), url );