summaryrefslogtreecommitdiffstats
path: root/kresources/lib/kcal_resourcegroupwarebaseconfig.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kresources/lib/kcal_resourcegroupwarebaseconfig.cpp')
-rw-r--r--kresources/lib/kcal_resourcegroupwarebaseconfig.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/kresources/lib/kcal_resourcegroupwarebaseconfig.cpp b/kresources/lib/kcal_resourcegroupwarebaseconfig.cpp
index 2b4bc81b..9ae91a0d 100644
--- a/kresources/lib/kcal_resourcegroupwarebaseconfig.cpp
+++ b/kresources/lib/kcal_resourcegroupwarebaseconfig.cpp
@@ -35,48 +35,48 @@
#include <kdialog.h>
#include <kpushbutton.h>
-#include <qlabel.h>
-#include <qlayout.h>
-#include <qhbox.h>
+#include <tqlabel.h>
+#include <tqlayout.h>
+#include <tqhbox.h>
using namespace KCal;
-ResourceGroupwareBaseConfig::ResourceGroupwareBaseConfig( QWidget* parent,
+ResourceGroupwareBaseConfig::ResourceGroupwareBaseConfig( TQWidget* parent,
const char* name )
: KRES::ConfigWidget( parent, name )
{
resize( 245, 115 );
- QGridLayout *mainLayout = new QGridLayout( this, 2, 2 );
+ TQGridLayout *mainLayout = new TQGridLayout( this, 2, 2 );
mainLayout->setSpacing( KDialog::spacingHint() );
- QLabel *label = new QLabel( i18n("URL:"), this );
+ TQLabel *label = new TQLabel( i18n("URL:"), this );
mainLayout->addWidget( label, 1, 0 );
mUrl = new KLineEdit( this );
mainLayout->addWidget( mUrl, 1, 1 );
- label = new QLabel( i18n("User:"), this );
+ label = new TQLabel( i18n("User:"), this );
mainLayout->addWidget( label, 2, 0 );
mUserEdit = new KLineEdit( this );
mainLayout->addWidget( mUserEdit, 2, 1 );
- label = new QLabel( i18n("Password:"), this );
+ label = new TQLabel( i18n("Password:"), this );
mainLayout->addWidget( label, 3, 0 );
mPasswordEdit = new KLineEdit( this );
mainLayout->addWidget( mPasswordEdit, 3, 1 );
mPasswordEdit->setEchoMode( KLineEdit::Password );
mFolderConfig = new KPIM::FolderConfig( this );
- connect( mFolderConfig, SIGNAL( updateFoldersClicked() ),
- SLOT( updateFolders() ) );
+ connect( mFolderConfig, TQT_SIGNAL( updateFoldersClicked() ),
+ TQT_SLOT( updateFolders() ) );
mainLayout->addMultiCellWidget( mFolderConfig, 4, 4, 0, 1 );
- QHBox *hBox = new QHBox( this );
+ TQHBox *hBox = new TQHBox( this );
mCacheSettingsButton = new KPushButton( i18n("Configure Cache Settings..."), hBox );
mainLayout->addMultiCellWidget( hBox, 5, 5, 0, 1 );
- connect( mCacheSettingsButton, SIGNAL( clicked() ),
- SLOT( showCacheSettings() ) );
+ connect( mCacheSettingsButton, TQT_SIGNAL( clicked() ),
+ TQT_SLOT( showCacheSettings() ) );
mCacheDialog = new CacheSettingsDialog( this );
}