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:
Diffstat (limited to 'source/blender/makesrna/intern/rna_access.c')
-rw-r--r--source/blender/makesrna/intern/rna_access.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/source/blender/makesrna/intern/rna_access.c b/source/blender/makesrna/intern/rna_access.c
index cbd02d885dc..4d2e205d1a9 100644
--- a/source/blender/makesrna/intern/rna_access.c
+++ b/source/blender/makesrna/intern/rna_access.c
@@ -62,22 +62,6 @@
#include "rna_internal.h"
-void RNA_warning(const char *format, ...)
-{
- va_list args;
-
- va_start(args, format);
- vprintf(format, args);
- va_end(args);
-
-#if WITH_PYTHON
- {
- extern void PyC_LineSpit(void);
- PyC_LineSpit();
- }
-#endif
-}
-
const PointerRNA PointerRNA_NULL= {{NULL}};
/* Init/Exit */
@@ -5093,3 +5077,19 @@ int RNA_property_copy(PointerRNA *ptr, PointerRNA *fromptr, PropertyRNA *prop, i
return 0;
}
+
+void RNA_warning(const char *format, ...)
+{
+ va_list args;
+
+ va_start(args, format);
+ vprintf(format, args);
+ va_end(args);
+
+#ifdef WITH_PYTHON
+ {
+ extern void PyC_LineSpit(void);
+ PyC_LineSpit();
+ }
+#endif
+}