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:
authorCampbell Barton <ideasman42@gmail.com>2016-05-03 06:52:07 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-05-03 06:52:07 +0300
commit9953eeb0126e95b1928024c702420544f32a8aca (patch)
treef58fd50047202da3c7ef605a7687b71b5b915a28 /source/blender/editors/space_view3d
parent48d3a8b54bf53a1562ceadc32af4cf0b8b1fc4b1 (diff)
Cleanup: use const for units API
Also make return args explicit.
Diffstat (limited to 'source/blender/editors/space_view3d')
-rw-r--r--source/blender/editors/space_view3d/view3d_draw.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/space_view3d/view3d_draw.c b/source/blender/editors/space_view3d/view3d_draw.c
index 7f1a7a059fc..3972fa27680 100644
--- a/source/blender/editors/space_view3d/view3d_draw.c
+++ b/source/blender/editors/space_view3d/view3d_draw.c
@@ -315,12 +315,12 @@ static void drawgrid(UnitSettings *unit, ARegion *ar, View3D *v3d, const char **
if (unit->system) {
/* Use GRID_MIN_PX * 2 for units because very very small grid
* items are less useful when dealing with units */
- void *usys;
+ const void *usys;
int len, i;
double dx_scalar;
float blend_fac;
- bUnit_GetSystem(&usys, &len, unit->system, B_UNIT_LENGTH);
+ bUnit_GetSystem(unit->system, B_UNIT_LENGTH, &usys, &len);
if (usys) {
i = len;
@@ -455,10 +455,10 @@ float ED_scene_grid_scale(Scene *scene, const char **grid_unit)
{
/* apply units */
if (scene->unit.system) {
- void *usys;
+ const void *usys;
int len;
- bUnit_GetSystem(&usys, &len, scene->unit.system, B_UNIT_LENGTH);
+ bUnit_GetSystem(scene->unit.system, B_UNIT_LENGTH, &usys, &len);
if (usys) {
int i = bUnit_GetBaseUnit(usys);