summaryrefslogtreecommitdiffstats
path: root/src/gui
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 00:13:38 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 00:13:38 -0500
commita1ce834caca62704ca155d487d5626f75965eaf8 (patch)
treebf122a31edaae1c0e4bed51a70bb0bcab4595e84 /src/gui
parent1b26b91a09aa82eea6744f11fab83692b103d8d0 (diff)
downloadtellico-a1ce834caca62704ca155d487d5626f75965eaf8.tar.gz
tellico-a1ce834caca62704ca155d487d5626f75965eaf8.zip
Bring up, down, top, and bottom icons into XDG compliance
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/kwidgetlister.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/kwidgetlister.cpp b/src/gui/kwidgetlister.cpp
index 6e2eaa1..90a9891 100644
--- a/src/gui/kwidgetlister.cpp
+++ b/src/gui/kwidgetlister.cpp
@@ -56,11 +56,11 @@ 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::fromLatin1("go-down")));
mButtonBox->setStretchFactor( mBtnMore, 0 );
mBtnFewer = new KPushButton( i18n("fewer widgets","Fewer"), mButtonBox );
- mBtnFewer->setIconSet(SmallIconSet(TQString::fromLatin1("up")));
+ mBtnFewer->setIconSet(SmallIconSet(TQString::fromLatin1("go-up")));
mButtonBox->setStretchFactor( mBtnFewer, 0 );
TQWidget *spacer = new TQWidget( mButtonBox );