summaryrefslogtreecommitdiffstats
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
parent1b26b91a09aa82eea6744f11fab83692b103d8d0 (diff)
downloadtellico-a1ce834c.tar.gz
tellico-a1ce834c.zip
Bring up, down, top, and bottom icons into XDG compliance
-rw-r--r--src/collectionfieldsdialog.cpp4
-rw-r--r--src/configdialog.cpp4
-rw-r--r--src/gui/kwidgetlister.cpp4
3 files changed, 6 insertions, 6 deletions
diff --git a/src/collectionfieldsdialog.cpp b/src/collectionfieldsdialog.cpp
index 7d1fc46..3025715 100644
--- a/src/collectionfieldsdialog.cpp
+++ b/src/collectionfieldsdialog.cpp
@@ -94,11 +94,11 @@ CollectionFieldsDialog::CollectionFieldsDialog(Data::CollPtr coll_, TQWidget* pa
TQHBox* hb2 = new TQHBox(fieldsGroup);
hb2->setSpacing(KDialog::spacingHint());
m_btnUp = new KPushButton(hb2);
- m_btnUp->setPixmap(BarIcon(TQString::fromLatin1("up"), TDEIcon::SizeSmall));
+ m_btnUp->setPixmap(BarIcon(TQString::fromLatin1("go-up"), TDEIcon::SizeSmall));
TQWhatsThis::add(m_btnUp, i18n("Move this field up in the list. The list order is important "
"for the layout of the entry editor."));
m_btnDown = new KPushButton(hb2);
- m_btnDown->setPixmap(BarIcon(TQString::fromLatin1("down"), TDEIcon::SizeSmall));
+ m_btnDown->setPixmap(BarIcon(TQString::fromLatin1("go-down"), TDEIcon::SizeSmall));
TQWhatsThis::add(m_btnDown, i18n("Move this field down in the list. The list order is important "
"for the layout of the entry editor."));
diff --git a/src/configdialog.cpp b/src/configdialog.cpp
index 6367d1b..f406c5f 100644
--- a/src/configdialog.cpp
+++ b/src/configdialog.cpp
@@ -515,11 +515,11 @@ void ConfigDialog::setupFetchPage() {
leftLayout->addWidget(hb);
hb->setSpacing(KDialog::spacingHint());
m_moveUpSourceBtn = new KPushButton(i18n("Move &Up"), hb);
- m_moveUpSourceBtn->setIconSet(SmallIconSet(TQString::fromLatin1("up")));
+ m_moveUpSourceBtn->setIconSet(SmallIconSet(TQString::fromLatin1("go-up")));
TQWhatsThis::add(m_moveUpSourceBtn, i18n("The order of the data sources sets the order "
"that Tellico uses when entries are automatically updated."));
m_moveDownSourceBtn = new KPushButton(i18n("Move &Down"), hb);
- m_moveDownSourceBtn->setIconSet(SmallIconSet(TQString::fromLatin1("down")));
+ m_moveDownSourceBtn->setIconSet(SmallIconSet(TQString::fromLatin1("go-down")));
TQWhatsThis::add(m_moveDownSourceBtn, i18n("The order of the data sources sets the order "
"that Tellico uses when entries are automatically updated."));
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 );