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 | 14e371192dfef0f2862f0a16e5dcfc8c5db1eeef (patch) | |
tree | 1fd311193b3809383406494aba84883f7e27c31a /kmines | |
parent | 2eda1e5dd5bfee90414504753c0ddf940014c655 (diff) | |
download | tdegames-14e371192dfef0f2862f0a16e5dcfc8c5db1eeef.tar.gz tdegames-14e371192dfef0f2862f0a16e5dcfc8c5db1eeef.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 'kmines')
-rw-r--r-- | kmines/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmines/main.cpp b/kmines/main.cpp index eee46237..c77afa87 100644 --- a/kmines/main.cpp +++ b/kmines/main.cpp @@ -113,10 +113,10 @@ MainWidget::MainWidget() (void)new TDEAction(KGuiItem(i18n("Replay Log"), "player_play"), 0, TQT_TQOBJECT(_status), TQT_SLOT(replayLog()), actionCollection(), "log_replay"); - (void)new TDEAction(KGuiItem(i18n("Save Log..."), "filesave"), 0, + (void)new TDEAction(KGuiItem(i18n("Save Log..."), "document-save"), 0, TQT_TQOBJECT(_status), TQT_SLOT(saveLog()), actionCollection(), "log_save"); - (void)new TDEAction(KGuiItem(i18n("Load Log..."), "fileopen"), 0, + (void)new TDEAction(KGuiItem(i18n("Load Log..."), "document-open"), 0, TQT_TQOBJECT(_status), TQT_SLOT(loadLog()), actionCollection(), "log_load"); |