rename IDProp.c/h to idprop_py_api, since it was same name as BKE idprop.c with case changed.

This commit is contained in:
2011-11-15 09:28:15 +00:00
parent 8623935aa8
commit d4d80ee0a1
5 changed files with 9 additions and 9 deletions

View File

@@ -33,17 +33,17 @@ set(INC_SYS
) )
set(SRC set(SRC
IDProp.c
bgl.c bgl.c
blf_py_api.c blf_py_api.c
bpy_internal_import.c bpy_internal_import.c
idprop_py_api.c
noise_py_api.c noise_py_api.c
py_capi_utils.c py_capi_utils.c
IDProp.h
bgl.h bgl.h
blf_py_api.h blf_py_api.h
bpy_internal_import.h bpy_internal_import.h
idprop_py_api.h
noise_py_api.h noise_py_api.h
py_capi_utils.h py_capi_utils.h
) )

View File

@@ -28,7 +28,7 @@
#include <Python.h> #include <Python.h>
#include "IDProp.h" #include "idprop_py_api.h"
#include "MEM_guardedalloc.h" #include "MEM_guardedalloc.h"
#include "BLI_string.h" #include "BLI_string.h"

View File

@@ -20,13 +20,13 @@
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
/** \file blender/python/generic/IDProp.h /** \file blender/python/generic/idprop_py_api.h
* \ingroup pygen * \ingroup pygen
*/ */
#ifndef IDPROP_H #ifndef PY_IDPROP_API_H
#define IDPROP_H #define PY_IDPROP_API_H
struct ID; struct ID;
struct IDProperty; struct IDProperty;
@@ -68,4 +68,4 @@ void IDProp_Init_Types(void);
#define IDPROP_ITER_KEYS 0 #define IDPROP_ITER_KEYS 0
#define IDPROP_ITER_ITEMS 1 #define IDPROP_ITER_ITEMS 1
#endif /* IDPROP_H */ #endif /* PY_IDPROP_API_H */

View File

@@ -53,7 +53,7 @@
#include "MEM_guardedalloc.h" #include "MEM_guardedalloc.h"
/* external util modules */ /* external util modules */
#include "../generic/IDProp.h" #include "../generic/idprop_py_api.h"
#include "../generic/bgl.h" #include "../generic/bgl.h"
#include "../generic/blf_py_api.h" #include "../generic/blf_py_api.h"
#include "../mathutils/mathutils.h" #include "../mathutils/mathutils.h"

View File

@@ -73,7 +73,7 @@
#include "BKE_animsys.h" #include "BKE_animsys.h"
#include "BKE_fcurve.h" #include "BKE_fcurve.h"
#include "../generic/IDProp.h" /* for IDprop lookups */ #include "../generic/idprop_py_api.h" /* for IDprop lookups */
#include "../generic/py_capi_utils.h" #include "../generic/py_capi_utils.h"
#ifdef WITH_INTERNATIONAL #ifdef WITH_INTERNATIONAL