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 /koshell | |
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 'koshell')
-rw-r--r-- | koshell/koshell_shell.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/koshell/koshell_shell.cc b/koshell/koshell_shell.cc index fc5ac0cf..aaff3c02 100644 --- a/koshell/koshell_shell.cc +++ b/koshell/koshell_shell.cc @@ -671,8 +671,8 @@ void KoShellWindow::tab_contextMenu(TQWidget * w,const TQPoint &p) { TDEPopupMenu menu; TDEIconLoader il; - int const mnuSave = menu.insertItem( il.loadIconSet( "filesave", TDEIcon::Small ), i18n("Save") ); - int const mnuClose = menu.insertItem( il.loadIcon( "fileclose", TDEIcon::Small ), i18n("Close") ); + int const mnuSave = menu.insertItem( il.loadIconSet( "document-save", TDEIcon::Small ), i18n("Save") ); + int const mnuClose = menu.insertItem( il.loadIcon( "window-close", TDEIcon::Small ), i18n("Close") ); int tabnr = m_pFrame->indexOf( w ); Page page = m_lstPages[tabnr]; |