diff options
Diffstat (limited to 'src/gui/kwidgetlister.cpp')
-rw-r--r-- | src/gui/kwidgetlister.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/kwidgetlister.cpp b/src/gui/kwidgetlister.cpp index 896955c..8574d28 100644 --- a/src/gui/kwidgetlister.cpp +++ b/src/gui/kwidgetlister.cpp @@ -36,7 +36,7 @@ #include <kpushbutton.h> #include <kiconloader.h> -#include <layout.h> +#include <tqlayout.h> #include <tqhbox.h> #include <assert.h> @@ -56,18 +56,18 @@ KWidgetLister::KWidgetLister( int minWidgets, int maxWidgets, TQWidget *parent, mLayout->addWidget( mButtonBox ); mBtnMore = new KPushButton( i18n("more widgets","More"), mButtonBox ); - mBtnMore->setIconSet(SmallIconSet(TQString::fromLatin1("down"))); + mBtnMore->setIconSet(SmallIconSet(TQString::tqfromLatin1("down"))); mButtonBox->setStretchFactor( mBtnMore, 0 ); mBtnFewer = new KPushButton( i18n("fewer widgets","Fewer"), mButtonBox ); - mBtnFewer->setIconSet(SmallIconSet(TQString::fromLatin1("up"))); + mBtnFewer->setIconSet(SmallIconSet(TQString::tqfromLatin1("up"))); mButtonBox->setStretchFactor( mBtnFewer, 0 ); TQWidget *spacer = new TQWidget( mButtonBox ); mButtonBox->setStretchFactor( spacer, 1 ); mBtnClear = new KPushButton( i18n("clear widgets","Clear"), mButtonBox ); - mBtnClear->setIconSet(SmallIconSet(TQString::fromLatin1("locationbar_erase"))); + mBtnClear->setIconSet(SmallIconSet(TQString::tqfromLatin1("locationbar_erase"))); mButtonBox->setStretchFactor( mBtnClear, 0 ); //---------- connect everything @@ -135,7 +135,7 @@ void KWidgetLister::addWidgetAtEnd(TQWidget *w) void KWidgetLister::removeLastWidget() { - // The layout will take care that the + // The tqlayout will take care that the // widget is removed from screen, too. mWidgetList.removeLast(); enableControls(); |