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:
authorKent Mein <mein@cs.umn.edu>2004-06-30 00:34:10 +0400
committerKent Mein <mein@cs.umn.edu>2004-06-30 00:34:10 +0400
commit09d3007b7148c6a0089c1cddcd7c463639d291cd (patch)
tree8ce5c2253f8f3fe9c5e5ed93ef9571f2436c1d29 /source/blender/src/drawview.c
parent7000bebc4b61ea92240a18536a40110b839880be (diff)
Two stupid fixes for warnings:
First one was for drawview.c I gave some types to things that didn't have them example -static void view3d_panel_background(cntrl) // VIEW3D_HANDLER_BACKGROUND +static void view3d_panel_background(short cntrl) // VIEW3D_HANDLER_BACKGR For edit.c I added a newline to the end of the file. Weee Kent
Diffstat (limited to 'source/blender/src/drawview.c')
-rw-r--r--source/blender/src/drawview.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/drawview.c b/source/blender/src/drawview.c
index 2d92883de80..dab5c5ff2bf 100644
--- a/source/blender/src/drawview.c
+++ b/source/blender/src/drawview.c
@@ -1496,7 +1496,7 @@ static void view3d_panel_object(short cntrl) // VIEW3D_HANDLER_OBJECT
}
}
-static void view3d_panel_background(cntrl) // VIEW3D_HANDLER_BACKGROUND
+static void view3d_panel_background(short cntrl) // VIEW3D_HANDLER_BACKGROUND
{
uiBlock *block;
View3D *vd;
@@ -1588,7 +1588,7 @@ static void view3d_panel_background(cntrl) // VIEW3D_HANDLER_BACKGROUND
}
-static void view3d_panel_properties(cntrl) // VIEW3D_HANDLER_SETTINGS
+static void view3d_panel_properties(short cntrl) // VIEW3D_HANDLER_SETTINGS
{
uiBlock *block;
View3D *vd;