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:
authorCampbell Barton <ideasman42@gmail.com>2010-10-03 01:02:40 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-10-03 01:02:40 +0400
commit491aebbf671d14f760da6ca87b8594420c932009 (patch)
tree775930005a27322be821c675d398d9c3ec028652 /source/blender/editors/include/ED_screen.h
parent3f768cb47228d0b9853f02839ef18d9f5f6d15ee (diff)
py/rna access to setting the header text - can be used in modal operators.
eg: context.area.header_text_set("Some Text") included example in the view3d modal operator template.
Diffstat (limited to 'source/blender/editors/include/ED_screen.h')
-rw-r--r--source/blender/editors/include/ED_screen.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/include/ED_screen.h b/source/blender/editors/include/ED_screen.h
index d95011c5961..7059e607218 100644
--- a/source/blender/editors/include/ED_screen.h
+++ b/source/blender/editors/include/ED_screen.h
@@ -80,7 +80,7 @@ void ED_area_do_listen(ScrArea *sa, struct wmNotifier *note);
void ED_area_tag_redraw(ScrArea *sa);
void ED_area_tag_refresh(ScrArea *sa);
void ED_area_do_refresh(struct bContext *C, ScrArea *sa);
-void ED_area_headerprint(ScrArea *sa, const char *str);
+void ED_area_headerprint(ScrArea *sa, char *str);
void ED_area_newspace(struct bContext *C, ScrArea *sa, int type);
void ED_area_prevspace(struct bContext *C, ScrArea *sa);
void ED_area_swapspace(struct bContext *C, ScrArea *sa1, ScrArea *sa2);