diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:59 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:59 -0500 |
commit | 3a347442a45a0631beade76b2870e6c823c2304c (patch) | |
tree | 3c9bc3285f66032a43f2559736dc81d281ab82bc /kommander/editor/workspace.cpp | |
parent | bd6cf65a81ec1ece59e191497f8796405babd15b (diff) | |
download | tdewebdev-3a347442a45a0631beade76b2870e6c823c2304c.tar.gz tdewebdev-3a347442a45a0631beade76b2870e6c823c2304c.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 'kommander/editor/workspace.cpp')
-rw-r--r-- | kommander/editor/workspace.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kommander/editor/workspace.cpp b/kommander/editor/workspace.cpp index b7e2943a..a14eac60 100644 --- a/kommander/editor/workspace.cpp +++ b/kommander/editor/workspace.cpp @@ -660,14 +660,14 @@ void Workspace::rmbClicked( TQListViewItem *i, const TQPoint& pos ) case WorkspaceItem::SourceFileType: menu.insertItem( i18n("&Open Source File..." ), OPEN_SOURCE ); menu.insertSeparator(); - menu.insertItem( PixmapChooser::loadPixmap( "editcut" ), + menu.insertItem( PixmapChooser::loadPixmap( "edit-cut" ), i18n("&Remove Source File From Project" ), REMOVE_SOURCE ); break; #endif case WorkspaceItem::FormFileType: menu.insertItem( i18n("&Open Form..." ), OPEN_FORM ); menu.insertSeparator(); - menu.insertItem( PixmapChooser::loadPixmap( "editcut" ), + menu.insertItem( PixmapChooser::loadPixmap( "edit-cut" ), #ifndef KOMMANDER i18n("&Remove Form From Project" ), REMOVE_FORM ); #else @@ -677,7 +677,7 @@ void Workspace::rmbClicked( TQListViewItem *i, const TQPoint& pos ) case WorkspaceItem::FormSourceType: menu.insertItem( i18n("&Open Form Source..." ), OPEN_FORM_SOURCE ); menu.insertSeparator(); - menu.insertItem( PixmapChooser::loadPixmap( "editcut" ), + menu.insertItem( PixmapChooser::loadPixmap( "edit-cut" ), #ifndef KOMMANDER i18n("&Remove Form From Project" ), REMOVE_FORM ); #else |