From 617557b08ea94e2b65a1697ddf0b79651204d92b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 1 Apr 2014 11:34:00 +1100 Subject: Code cleanup: remove TRUE/FALSE & WITH_BOOL_COMPAT define --- source/blender/blenkernel/BKE_text.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/blenkernel/BKE_text.h') diff --git a/source/blender/blenkernel/BKE_text.h b/source/blender/blenkernel/BKE_text.h index 7d7fad1c58d..4f77e4f5a23 100644 --- a/source/blender/blenkernel/BKE_text.h +++ b/source/blender/blenkernel/BKE_text.h @@ -94,9 +94,9 @@ void txt_do_redo (struct Text *text); void txt_split_curline (struct Text *text); void txt_backspace_char (struct Text *text); void txt_backspace_word (struct Text *text); -int txt_add_char (struct Text *text, unsigned int add); -int txt_add_raw_char (struct Text *text, unsigned int add); -int txt_replace_char (struct Text *text, unsigned int add); +bool txt_add_char (struct Text *text, unsigned int add); +bool txt_add_raw_char (struct Text *text, unsigned int add); +bool txt_replace_char (struct Text *text, unsigned int add); void txt_unindent (struct Text *text); void txt_comment (struct Text *text); void txt_indent (struct Text *text); -- cgit v1.2.3