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>2018-12-27 04:54:31 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-12-27 04:58:48 +0300
commitff0285c4763ab3781604a71b34930eacb743572c (patch)
tree14391111464fa6cebf40723b4433dc248bc5467c /source/blender/editors/interface/resources.c
parent40ba73e443e993c41eca8a564b31e3f3f8cd423b (diff)
Cleanup: use unsigned char (change previous commit)
Diffstat (limited to 'source/blender/editors/interface/resources.c')
-rw-r--r--source/blender/editors/interface/resources.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/interface/resources.c b/source/blender/editors/interface/resources.c
index a30dde38852..e79c5266a8e 100644
--- a/source/blender/editors/interface/resources.c
+++ b/source/blender/editors/interface/resources.c
@@ -1118,7 +1118,7 @@ void UI_GetThemeColor4ubv(int colorid, unsigned char col[4])
col[3] = cp[3];
}
-void UI_GetThemeColorType3ubv(int colorid, int spacetype, char col[3])
+void UI_GetThemeColorType3ubv(int colorid, int spacetype, uchar col[3])
{
const unsigned char *cp;
@@ -1128,7 +1128,7 @@ void UI_GetThemeColorType3ubv(int colorid, int spacetype, char col[3])
col[2] = cp[2];
}
-void UI_GetThemeColorType4ubv(int colorid, int spacetype, char col[4])
+void UI_GetThemeColorType4ubv(int colorid, int spacetype, uchar col[4])
{
const unsigned char *cp;