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:
authorStephen Swaney <sswaney@centurytel.net>2005-01-23 23:32:34 +0300
committerStephen Swaney <sswaney@centurytel.net>2005-01-23 23:32:34 +0300
commit93319a28a8e668f1bdd1c7e895b9091bb09d8f48 (patch)
tree7152bddbb05df4ffa32bbe1f69367aa8c91e54e6 /source/blender/src/toolbox.c
parent7f4f5deac44376ef15f3a9d6ca4089e264dc0fd1 (diff)
fix some undeclared parameters
Diffstat (limited to 'source/blender/src/toolbox.c')
-rw-r--r--source/blender/src/toolbox.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/src/toolbox.c b/source/blender/src/toolbox.c
index 19a49f5889e..37406eafcf9 100644
--- a/source/blender/src/toolbox.c
+++ b/source/blender/src/toolbox.c
@@ -797,7 +797,7 @@ void tbox_embossbox(short x1, short y1, short x2, short y2, short type)
}
-void tbox_drawelem_body(x, y, type)
+void tbox_drawelem_body( int x, int y, int type)
{
int x1 = 0, y1, x2 = 0, y2;
@@ -816,7 +816,7 @@ void tbox_drawelem_body(x, y, type)
}
-void tbox_drawelem_text(x, y, type)
+void tbox_drawelem_text( int x, int y, int type)
{
int x1 = 0, y1, x2 = 0, y2, len1, len2;
@@ -2369,4 +2369,4 @@ void toolbox_n_add(void)
tb_mainx= 0;
tb_mainy= -5;
toolbox_n();
-} \ No newline at end of file
+}