diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /kaddressbook/freebusywidget.cpp | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-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 'kaddressbook/freebusywidget.cpp')
-rw-r--r-- | kaddressbook/freebusywidget.cpp | 14 |
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() |