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>2020-02-14 05:58:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-02-14 05:58:58 +0300
commit489cecb9548337e767dee3b1b1828e03835aa0b1 (patch)
tree60ed7e579cb20a8bddd0931b9f34d3b105c80e3a /source/blender/editors/space_console
parent69be8039e80f55760ddc652bf79240d9d5ab38bc (diff)
Cleanup: change textview 'unsigned char' to 'uchar'
Diffstat (limited to 'source/blender/editors/space_console')
-rw-r--r--source/blender/editors/space_console/console_draw.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/editors/space_console/console_draw.c b/source/blender/editors/space_console/console_draw.c
index f8fa3f0128a..b669702c4f5 100644
--- a/source/blender/editors/space_console/console_draw.c
+++ b/source/blender/editors/space_console/console_draw.c
@@ -43,11 +43,11 @@
#include "../space_info/textview.h"
static int console_line_data(struct TextViewContext *tvc,
- unsigned char fg[4],
- unsigned char UNUSED(bg[4]),
+ uchar fg[4],
+ uchar UNUSED(bg[4]),
int *UNUSED(icon),
- unsigned char UNUSED(icon_fg[4]),
- unsigned char UNUSED(icon_bg[4]))
+ uchar UNUSED(icon_fg[4]),
+ uchar UNUSED(icon_bg[4]))
{
ConsoleLine *cl_iter = (ConsoleLine *)tvc->iter;
int fg_id = TH_TEXT;
@@ -180,7 +180,7 @@ static void console_textview_draw_cursor(struct TextViewContext *tvc)
immUnbindProgram();
}
-static void console_textview_const_colors(TextViewContext *UNUSED(tvc), unsigned char bg_sel[4])
+static void console_textview_const_colors(TextViewContext *UNUSED(tvc), uchar bg_sel[4])
{
UI_GetThemeColor4ubv(TH_CONSOLE_SELECT, bg_sel);
}