summaryrefslogtreecommitdiffstats
path: root/src/gvcore
diff options
context:
space:
mode:
Diffstat (limited to 'src/gvcore')
-rw-r--r--src/gvcore/fileoperation.cpp2
-rw-r--r--src/gvcore/fileopobject.cpp2
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();