diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:57 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:57 -0500 |
commit | bab4f22f92cb4960c7a7c17845813de2082ffdc9 (patch) | |
tree | 640b74651a92cff1c0ad2d5f0d3fd497b0ebb318 /tdeprint/management/kxmlcommandselector.cpp | |
parent | 43022555c031434da009032eceb8e6061e969d5f (diff) | |
download | tdelibs-bab4f22f92cb4960c7a7c17845813de2082ffdc9.tar.gz tdelibs-bab4f22f92cb4960c7a7c17845813de2082ffdc9.zip |
Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance
Diffstat (limited to 'tdeprint/management/kxmlcommandselector.cpp')
-rw-r--r-- | tdeprint/management/kxmlcommandselector.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeprint/management/kxmlcommandselector.cpp b/tdeprint/management/kxmlcommandselector.cpp index 08722cf6e..95f2b94a7 100644 --- a/tdeprint/management/kxmlcommandselector.cpp +++ b/tdeprint/management/kxmlcommandselector.cpp @@ -47,7 +47,7 @@ KXmlCommandSelector::KXmlCommandSelector(bool canBeNull, TQWidget *parent, const connect(m_cmd, TQT_SIGNAL(activated(int)), TQT_SLOT(slotCommandSelected(int))); TQPushButton *m_add = new KPushButton(this); TQPushButton *m_edit = new KPushButton(this); - m_add->setPixmap(SmallIcon("filenew")); + m_add->setPixmap(SmallIcon("document-new")); m_edit->setPixmap(SmallIcon("configure")); connect(m_add, TQT_SIGNAL(clicked()), TQT_SLOT(slotAddCommand())); connect(m_edit, TQT_SIGNAL(clicked()), TQT_SLOT(slotEditCommand())); @@ -69,7 +69,7 @@ KXmlCommandSelector::KXmlCommandSelector(bool canBeNull, TQWidget *parent, const if (canBeNull) { m_line = new TQLineEdit(this); - m_browse = new KPushButton(KGuiItem(i18n("&Browse..."), "fileopen"), this); + m_browse = new KPushButton(KGuiItem(i18n("&Browse..."), "document-open"), this); m_usefilter = new TQCheckBox(i18n("Use co&mmand:"), this); connect(m_browse, TQT_SIGNAL(clicked()), TQT_SLOT(slotBrowse())); connect(m_usefilter, TQT_SIGNAL(toggled(bool)), m_line, TQT_SLOT(setDisabled(bool))); |