diff options
author | Timothy Pearson <[email protected]> | 2014-10-13 15:43:51 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-13 15:43:51 -0500 |
commit | 804fd5439e359f1b57d8b321b6caff9d2651fb17 (patch) | |
tree | 00777a9fb9be5a214644062f86e95925c83ae9f6 /src/filelist.cpp | |
parent | 78767673c45a197968d62ba5745baf7bb5558b9c (diff) | |
download | soundkonverter-804fd5439e359f1b57d8b321b6caff9d2651fb17.tar.gz soundkonverter-804fd5439e359f1b57d8b321b6caff9d2651fb17.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/filelist.cpp')
-rwxr-xr-x | src/filelist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filelist.cpp b/src/filelist.cpp index abbce8d..fa28c9b 100755 --- a/src/filelist.cpp +++ b/src/filelist.cpp @@ -171,7 +171,7 @@ FileList::FileList( CDManager* _cdManager, TagEngine* _tagEngine, Config* _confi start = new TDEAction( i18n("Start conversion"), "system-run", 0, TQT_TQOBJECT(this), TQT_SLOT(convertSelectedItems()), actionCollection, "start_conversion" ); stop = new TDEAction( i18n("Stop conversion"), "process-stop", 0, TQT_TQOBJECT(this), TQT_SLOT(stopSelectedItems()), actionCollection, "stop_conversion" ); remove = new TDEAction( i18n("Remove"), "edittrash", Key_Delete, TQT_TQOBJECT(this), TQT_SLOT(removeSelectedItems()), actionCollection, "remove" ); - paste = new TDEAction( i18n("Paste"), "editpaste", 0, TQT_TQOBJECT(this), 0, actionCollection, "paste" ); // TODO paste + paste = new TDEAction( i18n("Paste"), "edit-paste", 0, TQT_TQOBJECT(this), 0, actionCollection, "paste" ); // TODO paste connect( TQT_TQOBJECT(this), TQT_SIGNAL(selectionChanged()), TQT_TQOBJECT(this), TQT_SLOT(itemsSelected()) |