summaryrefslogtreecommitdiffstats
path: root/kbugbuster/kresources/kcalresourceconfig.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:51:49 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:51:49 +0000
commit4ae0c208b66e0f7954e194384464fe2d0a2c56dd (patch)
treeb0a7cd1c184f0003c0292eb416ed27f674f9cc43 /kbugbuster/kresources/kcalresourceconfig.cpp
parent1964ea0fb4ab57493ca2ebb709c8d3b5395fd653 (diff)
downloadtdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.tar.gz
tdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1157652 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kbugbuster/kresources/kcalresourceconfig.cpp')
-rw-r--r--kbugbuster/kresources/kcalresourceconfig.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kbugbuster/kresources/kcalresourceconfig.cpp b/kbugbuster/kresources/kcalresourceconfig.cpp
index 008aa8c9..58466642 100644
--- a/kbugbuster/kresources/kcalresourceconfig.cpp
+++ b/kbugbuster/kresources/kcalresourceconfig.cpp
@@ -21,8 +21,8 @@
#include <typeinfo>
-#include <qlabel.h>
-#include <qlayout.h>
+#include <tqlabel.h>
+#include <tqlayout.h>
#include <klineedit.h>
#include <klocale.h>
@@ -34,29 +34,29 @@
#include "resourceprefs.h"
#include "kcalresourceconfig.h"
-KCalResourceConfig::KCalResourceConfig( QWidget* parent, const char* name )
+KCalResourceConfig::KCalResourceConfig( 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("Server:"), this );
+ TQLabel *label = new TQLabel( i18n("Server:"), this );
mainLayout->addWidget( label, 0, 0 );
mServerEdit = new KLineEdit( this );
mainLayout->addWidget( mServerEdit, 0, 1 );
- label = new QLabel( i18n("Product:"), this );
+ label = new TQLabel( i18n("Product:"), this );
mainLayout->addWidget( label, 1, 0 );
mProductEdit = new KLineEdit( this );
mainLayout->addWidget( mProductEdit, 1, 1 );
- label = new QLabel( i18n("Component:"), this );
+ label = new TQLabel( i18n("Component:"), this );
mainLayout->addWidget( label, 2, 0 );
mComponentEdit = new KLineEdit( this );