summaryrefslogtreecommitdiffstats
path: root/kbabel/kbabeldict/kbabeldictbox.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:27:52 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:27:52 +0000
commit6082256ac592910b0fb2229a095eaa4d85254df2 (patch)
treea30fe22105b4413c310683d4fb21caff5f8caf6c /kbabel/kbabeldict/kbabeldictbox.cpp
parent4ae0c208b66e0f7954e194384464fe2d0a2c56dd (diff)
downloadtdesdk-6082256ac592910b0fb2229a095eaa4d85254df2.tar.gz
tdesdk-6082256ac592910b0fb2229a095eaa4d85254df2.zip
TQt conversion fixes
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1158450 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kbabel/kbabeldict/kbabeldictbox.cpp')
-rw-r--r--kbabel/kbabeldict/kbabeldictbox.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kbabel/kbabeldict/kbabeldictbox.cpp b/kbabel/kbabeldict/kbabeldictbox.cpp
index f6ca948f..9580f2d9 100644
--- a/kbabel/kbabeldict/kbabeldictbox.cpp
+++ b/kbabel/kbabeldict/kbabeldictbox.cpp
@@ -197,14 +197,14 @@ KBabelDictBox::KBabelDictBox( TQWidget* parent, const char* name, WFlags fl )
TQGridLayout *grid = new TQGridLayout(mainLayout);
- TQHBoxLayout *hbox = new QHBoxLayout;
+ TQHBoxLayout *hbox = new TQHBoxLayout;
TQLabel *label = new TQLabel(i18n("Total:"),this);
hbox->addWidget(label);
totalResultsLabel = new TQLabel("0",this);
hbox->addWidget(totalResultsLabel);
grid->addLayout(hbox,0,0);
- hbox = new QHBoxLayout;
+ hbox = new TQHBoxLayout;
label = new TQLabel(i18n("Current:"), this);
hbox->addWidget(label);
currentLabel = new TQLabel("0",this);
@@ -212,7 +212,7 @@ KBabelDictBox::KBabelDictBox( TQWidget* parent, const char* name, WFlags fl )
grid->addLayout(hbox,1,0);
- hbox = new QHBoxLayout;
+ hbox = new TQHBoxLayout;
label = new TQLabel(i18n("Found in:"), this);
hbox->addWidget(label);
locationLabel = new TQLabel(this);
@@ -220,7 +220,7 @@ KBabelDictBox::KBabelDictBox( TQWidget* parent, const char* name, WFlags fl )
hbox->setStretchFactor(locationLabel,2);
grid->addLayout(hbox,0,1);
- hbox = new QHBoxLayout;
+ hbox = new TQHBoxLayout;
label = new TQLabel(i18n("Translator:"), this);
hbox->addWidget(label);
translatorLabel = new TQLabel(this);
@@ -232,7 +232,7 @@ KBabelDictBox::KBabelDictBox( TQWidget* parent, const char* name, WFlags fl )
grid->setColStretch(1,2);
- hbox = new QHBoxLayout;
+ hbox = new TQHBoxLayout;
label = new TQLabel(i18n("Date:"),this);
hbox->addWidget(label);
dateLabel = new TQLabel(this);
@@ -249,7 +249,7 @@ KBabelDictBox::KBabelDictBox( TQWidget* parent, const char* name, WFlags fl )
mainLayout->addLayout(hbox);
- hbox = new QHBoxLayout;
+ hbox = new TQHBoxLayout;
hbox->addStretch(1);
listButton = new TQToolButton(Qt::UpArrow,this);
listButton->setFixedSize(20,15);
@@ -307,7 +307,7 @@ KBabelDictBox::KBabelDictBox( TQWidget* parent, const char* name, WFlags fl )
resultSplitter->setSizes(sizes);
- hbox = new QHBoxLayout;
+ hbox = new TQHBoxLayout;
hbox->addStretch(1);
prevButton = new TQPushButton(i18n("< &Previous"),this);