diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 00:15:57 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 00:15:57 -0500 |
commit | e4da373e49c1f6fd31115f8e23465227ca4308b6 (patch) | |
tree | 3f1b3fe21966805a9a862016dffe351fdb8eb74c /tdeprint/tdefilelist.cpp | |
parent | 659c2cd8332c1413cd0e947993f3f6e218b86ba8 (diff) | |
download | tdelibs-e4da373e49c1f6fd31115f8e23465227ca4308b6.tar.gz tdelibs-e4da373e49c1f6fd31115f8e23465227ca4308b6.zip |
Bring up, down, top, and bottom icons into XDG compliance
Diffstat (limited to 'tdeprint/tdefilelist.cpp')
-rw-r--r-- | tdeprint/tdefilelist.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeprint/tdefilelist.cpp b/tdeprint/tdefilelist.cpp index bf2fb3d12..607fab296 100644 --- a/tdeprint/tdefilelist.cpp +++ b/tdeprint/tdefilelist.cpp @@ -130,14 +130,14 @@ KFileList::KFileList(TQWidget *parent, const char *name) m_open->setEnabled(false); m_up = new TQToolButton(this); - m_up->setIconSet(SmallIconSet("up")); + m_up->setIconSet(SmallIconSet("go-up")); connect(m_up, TQT_SIGNAL(clicked()), TQT_SLOT(slotUp())); TQToolTip::add(m_up, i18n("Move up")); TQWhatsThis::add(m_up, whatsThisMoveFileUpButton); m_up->setEnabled(false); m_down = new TQToolButton(this); - m_down->setIconSet(SmallIconSet("down")); + m_down->setIconSet(SmallIconSet("go-down")); connect(m_down, TQT_SIGNAL(clicked()), TQT_SLOT(slotDown())); TQToolTip::add(m_down, i18n("Move down")); TQWhatsThis::add(m_down, whatsThisMoveFileDownButton); |