diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:42 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:42 -0500 |
commit | 6ae9931c042a26c2b75b729eeeabd74e8519b1c3 (patch) | |
tree | 9033709c03f7e2da7aae986452133bf8132c327f /src/gvcore | |
parent | 3118190af4a61e2af2f6f2b6e75d82b3a0a4e22b (diff) | |
download | gwenview-6ae9931c042a26c2b75b729eeeabd74e8519b1c3.tar.gz gwenview-6ae9931c042a26c2b75b729eeeabd74e8519b1c3.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 'src/gvcore')
-rw-r--r-- | src/gvcore/fileoperation.cpp | 2 | ||||
-rw-r--r-- | src/gvcore/fileopobject.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gvcore/fileoperation.cpp b/src/gvcore/fileoperation.cpp index 3a814cd..db969f3 100644 --- a/src/gvcore/fileoperation.cpp +++ b/src/gvcore/fileoperation.cpp @@ -94,7 +94,7 @@ void fillDropURLMenu(TQPopupMenu* menu, const KURL::List& urls, const KURL& targ DropMenuContext* context=new DropMenuContext(TQT_TQOBJECT(menu), urls, target, wasMoved); menu->insertItem( SmallIcon("goto"), i18n("&Move Here"), context, TQT_SLOT(move()) ); - menu->insertItem( SmallIcon("editcopy"), i18n("&Copy Here"), + menu->insertItem( SmallIcon("edit-copy"), i18n("&Copy Here"), context, TQT_SLOT(copy()) ); menu->insertItem( SmallIcon("www"), i18n("&Link Here"), context, TQT_SLOT(link()) ); diff --git a/src/gvcore/fileopobject.cpp b/src/gvcore/fileopobject.cpp index 938ea3f..fe1dde6 100644 --- a/src/gvcore/fileopobject.cpp +++ b/src/gvcore/fileopobject.cpp @@ -192,7 +192,7 @@ void FileOpMakeDirObject::operator()() { InputDialog dlg(mParent); dlg.setCaption( i18n("Creating Folder") ); dlg.setLabel( i18n("Enter the name of the new folder:") ); - dlg.setButtonOK( KGuiItem(i18n("Create Folder"), "folder_new") ); + dlg.setButtonOK( KGuiItem(i18n("Create Folder"), "folder-new") ); if (!dlg.exec()) return; TQString newDir = dlg.lineEdit()->text(); |