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/cups | |
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/cups')
-rw-r--r-- | tdeprint/cups/kmcupsjobmanager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeprint/cups/kmcupsjobmanager.cpp b/tdeprint/cups/kmcupsjobmanager.cpp index fa208e551..e2c8b02c4 100644 --- a/tdeprint/cups/kmcupsjobmanager.cpp +++ b/tdeprint/cups/kmcupsjobmanager.cpp @@ -359,9 +359,9 @@ TQValueList<TDEAction*> KMCupsJobManager::createPluginActions(TDEActionCollectio list << (act = new PluginAction(0, i18n("&Job IPP Report"), "tdeprint_report", 0, coll, "plugin_ipp")); act->setGroup("plugin"); - list << (act = new PluginAction(1, i18n("&Increase Priority"), "up", 0, coll, "plugin_prioup")); + list << (act = new PluginAction(1, i18n("&Increase Priority"), "go-up", 0, coll, "plugin_prioup")); act->setGroup("plugin"); - list << (act = new PluginAction(2, i18n("&Decrease Priority"), "down", 0, coll, "plugin_priodown")); + list << (act = new PluginAction(2, i18n("&Decrease Priority"), "go-down", 0, coll, "plugin_priodown")); act->setGroup("plugin"); list << (act = new PluginAction(3, i18n("&Edit Attributes..."), "edit", 0, coll, "plugin_editjob")); act->setGroup("plugin"); |