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 /kmahjongg/Editor.cpp | |
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 'kmahjongg/Editor.cpp')
-rw-r--r-- | kmahjongg/Editor.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kmahjongg/Editor.cpp b/kmahjongg/Editor.cpp index 8112dbb9..87893bf3 100644 --- a/kmahjongg/Editor.cpp +++ b/kmahjongg/Editor.cpp @@ -110,26 +110,26 @@ void Editor::setupToolbar() TDEToolBarRadioGroup *radio = new TDEToolBarRadioGroup(topToolbar); // new game - topToolbar->insertButton(loader->loadIcon("filenew", TDEIcon::Toolbar), + topToolbar->insertButton(loader->loadIcon("document-new", TDEIcon::Toolbar), ID_TOOL_NEW, true, i18n("New board")); // open game - topToolbar->insertButton(loader->loadIcon("fileopen", TDEIcon::Toolbar), + topToolbar->insertButton(loader->loadIcon("document-open", TDEIcon::Toolbar), ID_TOOL_LOAD, true, i18n("Open board")); // save game - topToolbar->insertButton(loader->loadIcon("filesave", TDEIcon::Toolbar), + topToolbar->insertButton(loader->loadIcon("document-save", TDEIcon::Toolbar), ID_TOOL_SAVE, true, i18n("Save board")); - topToolbar->setButtonIconSet(ID_TOOL_SAVE,loader->loadIconSet("filesave", TDEIcon::Toolbar)); + topToolbar->setButtonIconSet(ID_TOOL_SAVE,loader->loadIconSet("document-save", TDEIcon::Toolbar)); #ifdef FUTURE_OPTIONS // Select topToolbar->insertSeparator(); topToolbar->insertButton(loader->loadIcon("rectangle_select", TDEIcon::Toolbar), ID_TOOL_SELECT, true, i18n("Select")); - topToolbar->insertButton(loader->loadIcon("editcut", TDEIcon::Toolbar), + topToolbar->insertButton(loader->loadIcon("edit-cut", TDEIcon::Toolbar), ID_TOOL_CUT, true, i18n("Cut")); - topToolbar->insertButton(loader->loadIcon("editcopy", TDEIcon::Toolbar), + topToolbar->insertButton(loader->loadIcon("edit-copy", TDEIcon::Toolbar), ID_TOOL_COPY, true, i18n("Copy")); - topToolbar->insertButton(loader->loadIcon("editpaste", TDEIcon::Toolbar), + topToolbar->insertButton(loader->loadIcon("edit-paste", TDEIcon::Toolbar), ID_TOOL_PASTE, true, i18n("Paste")); topToolbar->insertSeparator(); @@ -138,7 +138,7 @@ void Editor::setupToolbar() #endif topToolbar->insertButton(loader->loadIcon("pencil", TDEIcon::Toolbar), ID_TOOL_ADD, true, i18n("Add tiles")); - topToolbar->insertButton(loader->loadIcon("editdelete", TDEIcon::Toolbar), + topToolbar->insertButton(loader->loadIcon("edit-delete", TDEIcon::Toolbar), ID_TOOL_DEL, true, i18n("Remove tiles")); topToolbar->setToggle(ID_TOOL_ADD); |