diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:48 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:48 -0500 |
commit | d504497c10d3cc9441a39245af1723e8c0ae556d (patch) | |
tree | 9fdf6ec3624b0c25e04b5bc37c96ecef0fdaca18 /kexi/plugins/queries/kexiquerydesignersqlhistory.cpp | |
parent | c128ab57b3b5f3a57427a78cef7d5d4236cc9822 (diff) | |
download | koffice-d504497c10d3cc9441a39245af1723e8c0ae556d.tar.gz koffice-d504497c10d3cc9441a39245af1723e8c0ae556d.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 'kexi/plugins/queries/kexiquerydesignersqlhistory.cpp')
-rw-r--r-- | kexi/plugins/queries/kexiquerydesignersqlhistory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kexi/plugins/queries/kexiquerydesignersqlhistory.cpp b/kexi/plugins/queries/kexiquerydesignersqlhistory.cpp index c528540a..fba543db 100644 --- a/kexi/plugins/queries/kexiquerydesignersqlhistory.cpp +++ b/kexi/plugins/queries/kexiquerydesignersqlhistory.cpp @@ -41,7 +41,7 @@ KexiQueryDesignerSQLHistory::KexiQueryDesignerSQLHistory(TQWidget *parent, const m_history->setAutoDelete(true); m_popup = new TDEPopupMenu(this); - m_popup->insertItem(SmallIcon("editcopy"), i18n("Copy to Clipboard"), this, TQT_SLOT(slotToClipboard())); + m_popup->insertItem(SmallIcon("edit-copy"), i18n("Copy to Clipboard"), this, TQT_SLOT(slotToClipboard())); } KexiQueryDesignerSQLHistory::~KexiQueryDesignerSQLHistory() @@ -162,7 +162,7 @@ KexiQueryDesignerSQLHistory::addEntry(HistoryEntry *e) KexiQueryDesignerSQLHistory::contextMenu(const TQPoint &pos, HistoryEntry *) { TDEPopupMenu p(this); - p.insertItem(SmallIcon("editcopy"), i18n("Copy to Clipboard"), this, TQT_SLOT(slotToClipboard())); + p.insertItem(SmallIcon("edit-copy"), i18n("Copy to Clipboard"), this, TQT_SLOT(slotToClipboard())); #ifndef KEXI_NO_UNFINISHED |