Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2008-12-31 21:52:15 +0300
committerTon Roosendaal <ton@blender.org>2008-12-31 21:52:15 +0300
commit471fc0947987660ff500964f453a244593b62e52 (patch)
tree1314a0321359ec6733e1b7c960210fdf6c356a32 /source/blender/editors/include/ED_util.h
parent0f93d129f43ce39f045b53a09c006c4993d7ccd7 (diff)
2.5
My last one for 2008: global undo/redo back :) Happy 2009 all!
Diffstat (limited to 'source/blender/editors/include/ED_util.h')
-rw-r--r--source/blender/editors/include/ED_util.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/include/ED_util.h b/source/blender/editors/include/ED_util.h
index a691ab97798..411c3f250da 100644
--- a/source/blender/editors/include/ED_util.h
+++ b/source/blender/editors/include/ED_util.h
@@ -32,6 +32,7 @@ struct Object;
struct bContext;
struct uiMenuBlockHandle;
struct uiBlock;
+struct wmOperatorType;
/* ed_util.c */
@@ -40,10 +41,9 @@ void ED_editors_exit (struct bContext *C);
/* ************** Undo ************************ */
/* undo.c */
-void ED_redo (struct bContext *C);
-void ED_undo (struct bContext *C);
void ED_undo_push (struct bContext *C, char *str);
-void ED_undo_menu (struct bContext *C);
+void ED_OT_undo (struct wmOperatorType *ot);
+void ED_OT_redo (struct wmOperatorType *ot);
/* undo_editmode.c */
void undo_editmode_push (char *name, void (*freedata)(void *),