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:
Diffstat (limited to 'source/blender/editors/space_info/info_draw.c')
-rw-r--r--source/blender/editors/space_info/info_draw.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/editors/space_info/info_draw.c b/source/blender/editors/space_info/info_draw.c
index 6647a8ee946..575f44b61a9 100644
--- a/source/blender/editors/space_info/info_draw.c
+++ b/source/blender/editors/space_info/info_draw.c
@@ -149,10 +149,10 @@ static int report_textview_begin(TextViewContext *tvc)
tvc->iter_char = 0;
report_textview_init__internal(tvc);
- return TRUE;
+ return true;
}
else {
- return FALSE;
+ return false;
}
#else
return (tvc->iter != NULL);
@@ -178,10 +178,10 @@ static int report_textview_step(TextViewContext *tvc)
tvc->iter_char = 0; /* reset start */
report_textview_init__internal(tvc);
- return TRUE;
+ return true;
}
else {
- return FALSE;
+ return false;
}
}
else {
@@ -189,7 +189,7 @@ static int report_textview_step(TextViewContext *tvc)
tvc->iter_char = tvc->iter_char_next + 1;
report_textview_init__internal(tvc);
- return TRUE;
+ return true;
}
}