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 <campbell@blender.org>2022-04-04 06:17:03 +0300
committerFabian Schempp <fabianschempp@googlemail.com>2022-04-11 01:31:52 +0300
commit14063829ed9ce10d3e2d057e333cf39caefd879f (patch)
tree7622963a6de058d19b5cfe0c5162c338035202a9 /source/blender/editors/space_console
parent406387f8c1c2169d7879548f67b714a37aaa089b (diff)
Cleanup: ensure space after file named in headers
Add blank lines after file references to avoid them being interpreted as doc-strings the following declarations.
Diffstat (limited to 'source/blender/editors/space_console')
-rw-r--r--source/blender/editors/space_console/console_intern.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/space_console/console_intern.h b/source/blender/editors/space_console/console_intern.h
index bd9191bad76..deaaff05a33 100644
--- a/source/blender/editors/space_console/console_intern.h
+++ b/source/blender/editors/space_console/console_intern.h
@@ -13,6 +13,7 @@ struct bContext;
struct wmOperatorType;
/* console_draw.c */
+
void console_textview_main(struct SpaceConsole *sc, const struct ARegion *region);
/* needed to calculate the scrollbar */
int console_textview_height(struct SpaceConsole *sc, const struct ARegion *region);
@@ -22,6 +23,7 @@ void console_scrollback_prompt_begin(struct SpaceConsole *sc, ConsoleLine *cl_du
void console_scrollback_prompt_end(struct SpaceConsole *sc, ConsoleLine *cl_dummy);
/* console_ops.c */
+
void console_history_free(SpaceConsole *sc, ConsoleLine *cl);
void console_scrollback_free(SpaceConsole *sc, ConsoleLine *cl);
ConsoleLine *console_history_add_str(struct SpaceConsole *sc, char *str, bool own);