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:
authorIan Thompson <quornian@googlemail.com>2008-08-16 18:38:08 +0400
committerIan Thompson <quornian@googlemail.com>2008-08-16 18:38:08 +0400
commit310a6e2179a9c55acbe3bdb833ff8420bd6eb216 (patch)
tree600444f8def0f5f7f5973c4ddb6b2e783d026365 /source/blender/blenkernel/BKE_text.h
parentd1d1d2b8702230138d4fddbafa63ce1e66a7ea0c (diff)
Esc removes markers in stages. Temporary markers are removed first (if any) then other markers follow.
Diffstat (limited to 'source/blender/blenkernel/BKE_text.h')
-rw-r--r--source/blender/blenkernel/BKE_text.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/BKE_text.h b/source/blender/blenkernel/BKE_text.h
index 0094030e757..a80f3cec6c1 100644
--- a/source/blender/blenkernel/BKE_text.h
+++ b/source/blender/blenkernel/BKE_text.h
@@ -102,8 +102,8 @@ void txt_copy_clipboard (struct Text *text);
void txt_paste_clipboard (struct Text *text);
void txt_add_marker (struct Text *text, struct TextLine *line, int start, int end, char clr[4], int flags);
-void txt_clear_marker_region (struct Text *text, struct TextLine *line, int start, int end, int flags);
-void txt_clear_markers (struct Text *text, int flags);
+short txt_clear_marker_region (struct Text *text, struct TextLine *line, int start, int end, int flags);
+short txt_clear_markers (struct Text *text, int flags);
struct TextMarker *txt_find_marker (struct Text *text, struct TextLine *line, int curs, int flags);
struct TextMarker *txt_find_marker_region (struct Text *text, struct TextLine *line, int start, int end, int flags);
struct TextMarker *txt_prev_marker (struct Text *text, struct TextMarker *marker);