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/kprintdialog.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/kprintdialog.cpp')
-rw-r--r-- | tdeprint/kprintdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeprint/kprintdialog.cpp b/tdeprint/kprintdialog.cpp index afe775c57..f63dfd11b 100644 --- a/tdeprint/kprintdialog.cpp +++ b/tdeprint/kprintdialog.cpp @@ -870,7 +870,7 @@ void KPrintDialog::expandDialog(bool on) if (d->b_systemEnabled) d->m_plugin->show(); } - d->m_extbtn->setIconSet(SmallIconSet("up")); + d->m_extbtn->setIconSet(SmallIconSet("go-up")); d->m_extbtn->setText(i18n("&Options <<")); d->m_reduced = false; } @@ -883,7 +883,7 @@ void KPrintDialog::expandDialog(bool on) if (d->b_systemEnabled) d->m_plugin->hide(); } - d->m_extbtn->setIconSet(SmallIconSet("down")); + d->m_extbtn->setIconSet(SmallIconSet("go-down")); d->m_extbtn->setText(i18n("&Options >>")); d->m_reduced = true; } |