summaryrefslogtreecommitdiffstats
path: root/kaddressbook/freebusywidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kaddressbook/freebusywidget.cpp')
-rw-r--r--kaddressbook/freebusywidget.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kaddressbook/freebusywidget.cpp b/kaddressbook/freebusywidget.cpp
index d06a0ebd9..9bda32491 100644
--- a/kaddressbook/freebusywidget.cpp
+++ b/kaddressbook/freebusywidget.cpp
@@ -21,8 +21,8 @@
without including the source code for Qt in the source distribution.
*/
-#include <qlabel.h>
-#include <qlayout.h>
+#include <tqlabel.h>
+#include <tqlayout.h>
#include <kdialog.h>
#include <klocale.h>
@@ -32,21 +32,21 @@
#include "freebusywidget.h"
-FreeBusyWidget::FreeBusyWidget( KABC::AddressBook *ab, QWidget *parent, const char *name )
+FreeBusyWidget::FreeBusyWidget( KABC::AddressBook *ab, TQWidget *parent, const char *name )
: KAB::ContactEditorWidget( ab, parent, name )
{
- QHBoxLayout *layout = new QHBoxLayout( this, KDialog::marginHint(),
+ TQHBoxLayout *layout = new TQHBoxLayout( this, KDialog::marginHint(),
KDialog::spacingHint() );
- QLabel *label = new QLabel( i18n( "Location of Free/Busy information:" ), this );
+ TQLabel *label = new TQLabel( i18n( "Location of Free/Busy information:" ), this );
layout->addWidget( label );
mURL = new KURLRequester( this );
label->setBuddy( mURL );
layout->addWidget( mURL );
- connect( mURL, SIGNAL( textChanged( const QString& ) ),
- this, SLOT( setModified() ) );
+ connect( mURL, TQT_SIGNAL( textChanged( const TQString& ) ),
+ this, TQT_SLOT( setModified() ) );
}
FreeBusyWidget::~FreeBusyWidget()