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>2021-08-03 15:45:37 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-08-03 15:45:37 +0300
commitd3dd735fead26fdd9c645237597635b7cb6b135f (patch)
tree63f9d521700778b2c9c71b38d9b744d5dd4c357b /source/blender/editors/util/numinput.c
parentcec103d5a905b8236a2196464f4e7d7728eb65c5 (diff)
UI: building without Python again
Also quiet some warnings.
Diffstat (limited to 'source/blender/editors/util/numinput.c')
-rw-r--r--source/blender/editors/util/numinput.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/util/numinput.c b/source/blender/editors/util/numinput.c
index 15d672dea56..823837e2a42 100644
--- a/source/blender/editors/util/numinput.c
+++ b/source/blender/editors/util/numinput.c
@@ -309,7 +309,7 @@ bool user_string_to_number(bContext *C,
return success;
#else
- UNUSED_VARS(C, unit, type);
+ UNUSED_VARS(C, unit, type, use_single_line_error, r_error);
*r_value = atof(str);
return true;
#endif