summaryrefslogtreecommitdiff
path: root/commands.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'commands.cpp')
-rw-r--r--commands.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/commands.cpp b/commands.cpp
index f95ad2a..029978c 100644
--- a/commands.cpp
+++ b/commands.cpp
@@ -17,7 +17,7 @@
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
- * $Id: commands.cpp 116 2008-03-21 16:41:20Z tom $
+ * $Id: commands.cpp 140 2008-06-30 22:10:38Z tom $
*/
#include "commands.h"
@@ -41,6 +41,8 @@ CommandMenu::CommandMenu() :
Add(new Command(hk(tr("Generate a new puzzle")), &Menu::generate));
Add(new Command(hk(tr("Load a puzzle")), &Menu::load));
Add(new Command(hk(tr("Save the puzzle")), &Menu::save));
+ Add(new Command(hk(tr("Undo last action")), &Menu::undo));
+ Add(new Command(hk(tr("Redo last action")), &Menu::redo));
Add(new Command(hk(tr("Reset the puzzle")), &Menu::reset));
Add(new Command(hk(tr("Open setup menu")), &Menu::open_setup));
Add(new Command(hk(tr("Exit")), &Menu::exit));