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>2019-12-03 15:24:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-12-03 15:43:01 +0300
commitceab47f34790b5598453720fe276e5e6d521c4be (patch)
treef17bd898acdcef6af90aea351885dd2b48c74dc8 /source/blender/editors/space_info/info_intern.h
parentaee9d9a4a48270878c089c6c371a33c12b670e8b (diff)
Cleanup: text-view comments, variable names, const args
Diffstat (limited to 'source/blender/editors/space_info/info_intern.h')
-rw-r--r--source/blender/editors/space_info/info_intern.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/source/blender/editors/space_info/info_intern.h b/source/blender/editors/space_info/info_intern.h
index 7d4d6e5ab90..177b43edf74 100644
--- a/source/blender/editors/space_info/info_intern.h
+++ b/source/blender/editors/space_info/info_intern.h
@@ -46,11 +46,15 @@ void INFO_OT_reports_display_update(struct wmOperatorType *ot);
/* info_draw.c */
void *info_text_pick(struct SpaceInfo *sinfo,
- struct ARegion *ar,
+ const struct ARegion *ar,
ReportList *reports,
int mouse_y);
-int info_textview_height(struct SpaceInfo *sinfo, struct ARegion *ar, struct ReportList *reports);
-void info_textview_main(struct SpaceInfo *sinfo, struct ARegion *ar, struct ReportList *reports);
+int info_textview_height(struct SpaceInfo *sinfo,
+ const struct ARegion *ar,
+ struct ReportList *reports);
+void info_textview_main(struct SpaceInfo *sinfo,
+ const struct ARegion *ar,
+ struct ReportList *reports);
/* info_report.c */
int info_report_mask(struct SpaceInfo *sinfo);