- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/TextUI/TextWindow.cpp
rbcf653 rc6081e 1 /*2 * Project: MoleCuilder3 * Description: creates and alters molecular systems4 * Copyright (C) 2010 University of Bonn. All rights reserved.5 * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.6 */7 8 1 /* 9 2 * TextWindow.cpp … … 12 5 * Author: crueger 13 6 */ 14 15 // include config.h16 #ifdef HAVE_CONFIG_H17 #include <config.h>18 #endif19 7 20 8 #include "Helpers/MemDebug.hpp" … … 68 56 new SeperatorItem(main_menu); 69 57 70 Action* undoAction = ActionRegistry::getInstance().getActionByName(" Undo");58 Action* undoAction = ActionRegistry::getInstance().getActionByName("undo"); 71 59 new ActionMenuItem('u',"Undo last operation",main_menu,undoAction); 72 60 73 Action* redoAction = ActionRegistry::getInstance().getActionByName(" Redo");61 Action* redoAction = ActionRegistry::getInstance().getActionByName("redo"); 74 62 new ActionMenuItem('r',"Redo last operation",main_menu,redoAction); 75 63
Note:
See TracChangeset
for help on using the changeset viewer.