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-31 20:23:31 +0400
committerIan Thompson <quornian@googlemail.com>2008-08-31 20:23:31 +0400
commit062bf735e7eb6ae4922127efe027ee9354dc4cf6 (patch)
treeaf83a1e63fabe2cb80df3a15ee7de4cf4b7f1c34 /source/blender/src/drawtext.c
parent3bab89cc1c51e80e15efb4f5d751940ac06001a4 (diff)
Minor tidying and commentingsoc-2008-quorn
Diffstat (limited to 'source/blender/src/drawtext.c')
-rw-r--r--source/blender/src/drawtext.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/src/drawtext.c b/source/blender/src/drawtext.c
index b8da797662c..0797a425f2a 100644
--- a/source/blender/src/drawtext.c
+++ b/source/blender/src/drawtext.c
@@ -809,7 +809,7 @@ static void draw_markers(SpaceText *st) {
x2= get_char_pos(st, line->line, marker->end) - st->left + offc;
y2= cy + offl;
- glColor3ub(marker->clr[0], marker->clr[1], marker->clr[2]);
+ glColor3ub(marker->color[0], marker->color[1], marker->color[2]);
x= st->showlinenrs ? TXT_OFFSET + TEXTXLOC : TXT_OFFSET;
y= curarea->winy-3;
@@ -1518,13 +1518,13 @@ void find_and_replace(SpaceText *st, short mode) {
txt_insert_buf(text, g_replace_str);
if (st->showsyntax) txt_format_line(st, text->curl, 1);
} else if (mode==2) {
- char clr[4];
- BIF_GetThemeColor4ubv(TH_SHADE2, clr);
+ char color[4];
+ BIF_GetThemeColor4ubv(TH_SHADE2, color);
if (txt_find_marker(text, text->curl, text->selc, TMARK_GRP_FINDALL, 0)) {
if (tmp) MEM_freeN(tmp), tmp=NULL;
break;
}
- txt_add_marker(text, text->curl, text->curc, text->selc, clr, TMARK_GRP_FINDALL, TMARK_EDITALL);
+ txt_add_marker(text, text->curl, text->curc, text->selc, color, TMARK_GRP_FINDALL, TMARK_EDITALL);
}
}
MEM_freeN(tmp);