diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 00:13:38 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 00:13:38 -0500 |
commit | a1ce834caca62704ca155d487d5626f75965eaf8 (patch) | |
tree | bf122a31edaae1c0e4bed51a70bb0bcab4595e84 /src/collectionfieldsdialog.cpp | |
parent | 1b26b91a09aa82eea6744f11fab83692b103d8d0 (diff) | |
download | tellico-a1ce834caca62704ca155d487d5626f75965eaf8.tar.gz tellico-a1ce834caca62704ca155d487d5626f75965eaf8.zip |
Bring up, down, top, and bottom icons into XDG compliance
Diffstat (limited to 'src/collectionfieldsdialog.cpp')
-rw-r--r-- | src/collectionfieldsdialog.cpp | 4 |
1 files changed, 2 insertions, 2 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.")); |