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:
authorThomas Dinges <blender@dingto.org>2010-01-15 20:36:06 +0300
committerThomas Dinges <blender@dingto.org>2010-01-15 20:36:06 +0300
commit6d1f5f8f5dcabd9071dc190b85ab5aa118eb03c9 (patch)
tree7b2c809e8841b4bae5f02d2f624acf357f04127a /source/blender/editors/space_console/console_draw.c
parentace8d45c1c7cdd754771f9e4aceae80de2154653 (diff)
*Fix for last commit. Removed unused code.
Diffstat (limited to 'source/blender/editors/space_console/console_draw.c')
-rw-r--r--source/blender/editors/space_console/console_draw.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/blender/editors/space_console/console_draw.c b/source/blender/editors/space_console/console_draw.c
index 3fee2b6277b..9b4ec3882de 100644
--- a/source/blender/editors/space_console/console_draw.c
+++ b/source/blender/editors/space_console/console_draw.c
@@ -79,19 +79,15 @@ static void console_line_color(unsigned char *fg, int type)
switch(type) {
case CONSOLE_LINE_OUTPUT:
UI_GetThemeColor3ubv(TH_CONSOLE_OUTPUT, fg);
- fg[0], fg[1], fg[2];
break;
case CONSOLE_LINE_INPUT:
UI_GetThemeColor3ubv(TH_CONSOLE_INPUT, fg);
- fg[0], fg[1], fg[2];
break;
case CONSOLE_LINE_INFO:
UI_GetThemeColor3ubv(TH_CONSOLE_INFO, fg);
- fg[0], fg[1], fg[2];
break;
case CONSOLE_LINE_ERROR:
UI_GetThemeColor3ubv(TH_CONSOLE_ERROR, fg);
- fg[0], fg[1], fg[2];
break;
}
}