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:
authorJoshua Leung <aligorith@gmail.com>2009-10-21 14:56:31 +0400
committerJoshua Leung <aligorith@gmail.com>2009-10-21 14:56:31 +0400
commit2344d62dfbb6f41318ea75fb610d1823baf23cfb (patch)
tree9d0a9539186ca9bd069e92920fd29f7c521ef1b6 /source/blender/editors/space_console
parent7685def9af9f69c2ff176a32d586fcbf0d938512 (diff)
Silencing some compiler warnings for mingw
* Unused functions * Uninitialised vars
Diffstat (limited to 'source/blender/editors/space_console')
-rw-r--r--source/blender/editors/space_console/console_ops.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/space_console/console_ops.c b/source/blender/editors/space_console/console_ops.c
index ccf7dbff946..a2e11dc6bd5 100644
--- a/source/blender/editors/space_console/console_ops.c
+++ b/source/blender/editors/space_console/console_ops.c
@@ -135,6 +135,7 @@ static char cursor_char_prev(ConsoleLine *cl)
return cl->line[cl->cursor-1];
}
+#if 0 // XXX unused
static char cursor_char_next(ConsoleLine *cl)
{
/* assume cursor is clamped */
@@ -159,8 +160,10 @@ static void console_history_debug(const bContext *C)
{
SpaceConsole *sc= CTX_wm_space_console(C);
+
console_lb_debug__internal(&sc->history);
}
+#endif
static ConsoleLine *console_lb_add__internal(ListBase *lb, ConsoleLine *from)
{