diff options
Diffstat (limited to 'kdict/applet')
-rw-r--r-- | kdict/applet/kdictapplet.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kdict/applet/kdictapplet.cpp b/kdict/applet/kdictapplet.cpp index 0179f0b8..706e7e9a 100644 --- a/kdict/applet/kdictapplet.cpp +++ b/kdict/applet/kdictapplet.cpp @@ -20,7 +20,7 @@ #include <tqlabel.h> #include <tqpushbutton.h> #include <tqtimer.h> -#include <tqlayout.h> +#include <layout.h> #include <tqtooltip.h> #include <kconfig.h> @@ -102,7 +102,7 @@ DictApplet::DictApplet(const TQString& configFile, Type type, int actions, TQWid TQPixmap pm = KGlobal::iconLoader()->loadIcon("kdict", KIcon::Panel, KIcon::SizeSmall, KIcon::DefaultState, 0L, true); iconLabel->setPixmap(pm); baseLay->addWidget(iconLabel,1,0); - iconLabel->tqsetAlignment(TQt::AlignCenter | TQt::AlignVCenter); + iconLabel->setAlignment(TQt::AlignCenter | TQt::AlignVCenter); iconLabel->setFixedWidth(pm.width()+4); TQToolTip::add(iconLabel,i18n("Look up a word or phrase with Kdict")); @@ -160,7 +160,7 @@ DictApplet::DictApplet(const TQString& configFile, Type type, int actions, TQWid externalCombo = new KHistoryCombo(popupBox); externalCombo->setCompletionObject(completionObject); connect(externalCombo, TQT_SIGNAL(returnPressed(const TQString&)), TQT_SLOT(startQuery(const TQString&))); - externalCombo->setFixedSize(160, externalCombo->tqsizeHint().height()); + externalCombo->setFixedSize(160, externalCombo->sizeHint().height()); connect(internalCombo, TQT_SIGNAL(completionModeChanged(KGlobalSettings::Completion)), this, TQT_SLOT(updateCompletionMode(KGlobalSettings::Completion))); @@ -205,9 +205,9 @@ DictApplet::~DictApplet() int DictApplet::widthForHeight(int height) const { if (height >= 38) - return textLabel->tqsizeHint().width()+55; + return textLabel->sizeHint().width()+55; else - return textLabel->tqsizeHint().width()+25; + return textLabel->sizeHint().width()+25; } @@ -224,10 +224,10 @@ void DictApplet::resizeEvent(TQResizeEvent*) baseWidget->show(); baseWidget->setFixedSize(width(),height()); - if (height() < internalCombo->tqsizeHint().height()) + if (height() < internalCombo->sizeHint().height()) internalCombo->setFixedHeight(height()); else - internalCombo->setFixedHeight(internalCombo->tqsizeHint().height()); + internalCombo->setFixedHeight(internalCombo->sizeHint().height()); if (height() >= 38) { textLabel->show(); |