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:
authorTon Roosendaal <ton@blender.org>2005-09-15 21:32:24 +0400
committerTon Roosendaal <ton@blender.org>2005-09-15 21:32:24 +0400
commite63f2117219db6b46325e8a60965530941f9710c (patch)
tree86e9e8fe0d6a560c0612a1fbb140c331171a6bb4 /source/blender/src/header_info.c
parent0a2b71a3a4c18d80058e0b67fee9d41fced7c261 (diff)
Adding missing prototypes, removing unused variables, initializing vars,
all to make compiling warning less again in gcc. :)
Diffstat (limited to 'source/blender/src/header_info.c')
-rw-r--r--source/blender/src/header_info.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/source/blender/src/header_info.c b/source/blender/src/header_info.c
index e2bb0fc4f9d..f656591879d 100644
--- a/source/blender/src/header_info.c
+++ b/source/blender/src/header_info.c
@@ -1447,22 +1447,8 @@ static uiBlock *info_timelinemenu(void *arg_unused)
/************************** RENDER *****************************/
-/* copied from buttons.c. .. probably not such a good idea!? */
-static void run_playanim(char *file)
-{
- extern char bprogname[]; /* usiblender.c */
- char str[FILE_MAXDIR+FILE_MAXFILE];
- int pos[2], size[2];
-
- calc_renderwin_rectangle(G.winpos, pos, size);
-
- sprintf(str, "%s -a -p %d %d \"%s\"", bprogname, pos[0], pos[1], file);
- system(str);
-}
-
static void do_info_rendermenu(void *arg, int event)
{
- char file[FILE_MAXDIR+FILE_MAXFILE];
extern void playback_anim();