diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:56 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:56 -0500 |
commit | ab197a37e3e362ae3980f5bdd9840b0e4703e370 (patch) | |
tree | 8778c43175b2f6e2b593ef0edf3f9e5c8518e678 /libkonq | |
parent | a19ce6ad349c047b7feb2ad49c5a066d7dd2c745 (diff) | |
download | tdebase-ab197a37e3e362ae3980f5bdd9840b0e4703e370.tar.gz tdebase-ab197a37e3e362ae3980f5bdd9840b0e4703e370.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 'libkonq')
-rw-r--r-- | libkonq/knewmenu.cc | 4 | ||||
-rw-r--r-- | libkonq/konq_operations.cc | 2 | ||||
-rw-r--r-- | libkonq/konq_popupmenu.cc | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/libkonq/knewmenu.cc b/libkonq/knewmenu.cc index d4cae95ad..621b1f614 100644 --- a/libkonq/knewmenu.cc +++ b/libkonq/knewmenu.cc @@ -64,7 +64,7 @@ public: }; KNewMenu::KNewMenu( TDEActionCollection * _collec, const char *name ) : - TDEActionMenu( i18n( "Create New" ), "filenew", _collec, name ), + TDEActionMenu( i18n( "Create New" ), "document-new", _collec, name ), menuItemsVersion( 0 ) { //kdDebug(1203) << "KNewMenu::KNewMenu " << this << endl; @@ -76,7 +76,7 @@ KNewMenu::KNewMenu( TDEActionCollection * _collec, const char *name ) : } KNewMenu::KNewMenu( TDEActionCollection * _collec, TQWidget *parentWidget, const char *name ) : - TDEActionMenu( i18n( "Create New" ), "filenew", _collec, name ), + TDEActionMenu( i18n( "Create New" ), "document-new", _collec, name ), menuItemsVersion( 0 ) { d = new KNewMenuPrivate; diff --git a/libkonq/konq_operations.cc b/libkonq/konq_operations.cc index ea89e39d0..4f754681e 100644 --- a/libkonq/konq_operations.cc +++ b/libkonq/konq_operations.cc @@ -574,7 +574,7 @@ void KonqOperations::doFileCopy() if (!mlst.isEmpty() && (sMoving || (sReading && sDeleting)) && !linkOnly ) popup.insertItem(SmallIconSet("goto"), i18n( "&Move Here" ) + "\t" + KKey::modFlagLabel( KKey::SHIFT ), 2 ); if ( sReading && !linkOnly) - popup.insertItem(SmallIconSet("editcopy"), i18n( "&Copy Here" ) + "\t" + KKey::modFlagLabel( KKey::CTRL ), 1 ); + popup.insertItem(SmallIconSet("edit-copy"), i18n( "&Copy Here" ) + "\t" + KKey::modFlagLabel( KKey::CTRL ), 1 ); popup.insertItem(SmallIconSet("www"), i18n( "&Link Here" ) + "\t" + KKey::modFlagLabel( (KKey::ModFlag)( KKey::CTRL|KKey::SHIFT ) ), 3 ); if (bSetWallpaper) popup.insertItem(SmallIconSet("background"), i18n( "Set as &Wallpaper" ), 4 ); diff --git a/libkonq/konq_popupmenu.cc b/libkonq/konq_popupmenu.cc index c16b95abf..7a6ddaa13 100644 --- a/libkonq/konq_popupmenu.cc +++ b/libkonq/konq_popupmenu.cc @@ -528,7 +528,7 @@ void KonqPopupMenu::setup(KonqPopupFlags kpf) { if (d->m_itemFlags & KParts::BrowserExtension::ShowCreateDirectory) { - TDEAction *actNewDir = new TDEAction( i18n( "Create &Folder..." ), "folder_new", 0, TQT_TQOBJECT(this), TQT_SLOT( slotPopupNewDir() ), &m_ownActions, "newdir" ); + TDEAction *actNewDir = new TDEAction( i18n( "Create &Folder..." ), "folder-new", 0, TQT_TQOBJECT(this), TQT_SLOT( slotPopupNewDir() ), &m_ownActions, "newdir" ); addAction( actNewDir ); addSeparator(); } |