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>2012-05-06 21:22:54 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-06 21:22:54 +0400
commitffed654ff2a1349b735026aafde6f8937a4a3f15 (patch)
treeaee57d96cc5f5a3e425bf0f17477101ab899a87c /source/blender/blenkernel/intern/context.c
parent1118b3fe3f6a9597403e8eb61f33e7a877098145 (diff)
style cleanup: blenkernel
Diffstat (limited to 'source/blender/blenkernel/intern/context.c')
-rw-r--r--source/blender/blenkernel/intern/context.c236
1 files changed, 118 insertions, 118 deletions
diff --git a/source/blender/blenkernel/intern/context.c b/source/blender/blenkernel/intern/context.c
index bd47e7cbd37..d736309f605 100644
--- a/source/blender/blenkernel/intern/context.c
+++ b/source/blender/blenkernel/intern/context.c
@@ -92,14 +92,14 @@ bContext *CTX_create(void)
{
bContext *C;
- C= MEM_callocN(sizeof(bContext), "bContext");
+ C = MEM_callocN(sizeof(bContext), "bContext");
return C;
}
bContext *CTX_copy(const bContext *C)
{
- bContext *newC= MEM_dupallocN((void*)C);
+ bContext *newC = MEM_dupallocN((void *)C);
return newC;
}
@@ -118,23 +118,23 @@ bContextStore *CTX_store_add(ListBase *contexts, const char *name, PointerRNA *p
/* ensure we have a context to put the entry in, if it was already used
* we have to copy the context to ensure */
- ctx= contexts->last;
+ ctx = contexts->last;
if (!ctx || ctx->used) {
if (ctx) {
- lastctx= ctx;
- ctx= MEM_dupallocN(lastctx);
+ lastctx = ctx;
+ ctx = MEM_dupallocN(lastctx);
BLI_duplicatelist(&ctx->entries, &lastctx->entries);
}
else
- ctx= MEM_callocN(sizeof(bContextStore), "bContextStore");
+ ctx = MEM_callocN(sizeof(bContextStore), "bContextStore");
BLI_addtail(contexts, ctx);
}
- entry= MEM_callocN(sizeof(bContextStoreEntry), "bContextStoreEntry");
+ entry = MEM_callocN(sizeof(bContextStoreEntry), "bContextStoreEntry");
BLI_strncpy(entry->name, name, sizeof(entry->name));
- entry->ptr= *ptr;
+ entry->ptr = *ptr;
BLI_addtail(&ctx->entries, entry);
@@ -148,22 +148,22 @@ bContextStore *CTX_store_add_all(ListBase *contexts, bContextStore *context)
/* ensure we have a context to put the entries in, if it was already used
* we have to copy the context to ensure */
- ctx= contexts->last;
+ ctx = contexts->last;
if (!ctx || ctx->used) {
if (ctx) {
- lastctx= ctx;
- ctx= MEM_dupallocN(lastctx);
+ lastctx = ctx;
+ ctx = MEM_dupallocN(lastctx);
BLI_duplicatelist(&ctx->entries, &lastctx->entries);
}
else
- ctx= MEM_callocN(sizeof(bContextStore), "bContextStore");
+ ctx = MEM_callocN(sizeof(bContextStore), "bContextStore");
BLI_addtail(contexts, ctx);
}
- for (tentry= context->entries.first; tentry; tentry= tentry->next) {
- entry= MEM_dupallocN(tentry);
+ for (tentry = context->entries.first; tentry; tentry = tentry->next) {
+ entry = MEM_dupallocN(tentry);
BLI_addtail(&ctx->entries, entry);
}
@@ -172,14 +172,14 @@ bContextStore *CTX_store_add_all(ListBase *contexts, bContextStore *context)
void CTX_store_set(bContext *C, bContextStore *store)
{
- C->wm.store= store;
+ C->wm.store = store;
}
bContextStore *CTX_store_copy(bContextStore *store)
{
bContextStore *ctx;
- ctx= MEM_dupallocN(store);
+ ctx = MEM_dupallocN(store);
BLI_duplicatelist(&ctx->entries, &store->entries);
return ctx;
@@ -195,7 +195,7 @@ void CTX_store_free_list(ListBase *contexts)
{
bContextStore *ctx;
- while ((ctx= contexts->first)) {
+ while ((ctx = contexts->first)) {
BLI_remlink(contexts, ctx);
CTX_store_free(ctx);
}
@@ -209,7 +209,7 @@ int CTX_py_init_get(bContext *C)
}
void CTX_py_init_set(bContext *C, int value)
{
- C->data.py_init= value;
+ C->data.py_init = value;
}
void *CTX_py_dict_get(const bContext *C)
@@ -218,7 +218,7 @@ void *CTX_py_dict_get(const bContext *C)
}
void CTX_py_dict_set(bContext *C, void *value)
{
- C->data.py_context= value;
+ C->data.py_context = value;
}
/* data context utility functions */
@@ -237,8 +237,8 @@ static void *ctx_wm_python_context_get(const bContext *C, const char *member, vo
if (C && CTX_py_dict_get(C)) {
memset(&result, 0, sizeof(bContextDataResult));
- BPY_context_member_get((bContext*)C, member, &result);
- if(result.ptr.data)
+ BPY_context_member_get((bContext *)C, member, &result);
+ if (result.ptr.data)
return result.ptr.data;
}
#endif
@@ -251,8 +251,8 @@ static int ctx_data_get(bContext *C, const char *member, bContextDataResult *res
bScreen *sc;
ScrArea *sa;
ARegion *ar;
- int done= 0, recursion= C->data.recursion;
- int ret= 0;
+ int done = 0, recursion = C->data.recursion;
+ int ret = 0;
memset(result, 0, sizeof(bContextDataResult));
#ifdef WITH_PYTHON
@@ -271,42 +271,42 @@ static int ctx_data_get(bContext *C, const char *member, bContextDataResult *res
* Values in order of importance
* (0, -1, 1) - Where 1 is highest priority
* */
- if (done!=1 && recursion < 1 && C->wm.store) {
+ if (done != 1 && recursion < 1 && C->wm.store) {
bContextStoreEntry *entry;
- C->data.recursion= 1;
+ C->data.recursion = 1;
- entry= BLI_rfindstring(&C->wm.store->entries, member, offsetof(bContextStoreEntry, name));
+ entry = BLI_rfindstring(&C->wm.store->entries, member, offsetof(bContextStoreEntry, name));
if (entry) {
- result->ptr= entry->ptr;
- done= 1;
+ result->ptr = entry->ptr;
+ done = 1;
}
}
- if (done!=1 && recursion < 2 && (ar=CTX_wm_region(C))) {
- C->data.recursion= 2;
+ if (done != 1 && recursion < 2 && (ar = CTX_wm_region(C))) {
+ C->data.recursion = 2;
if (ar->type && ar->type->context) {
ret = ar->type->context(C, member, result);
- if (ret) done= -(-ret | -done);
+ if (ret) done = -(-ret | -done);
}
}
- if (done!=1 && recursion < 3 && (sa=CTX_wm_area(C))) {
- C->data.recursion= 3;
+ if (done != 1 && recursion < 3 && (sa = CTX_wm_area(C))) {
+ C->data.recursion = 3;
if (sa->type && sa->type->context) {
ret = sa->type->context(C, member, result);
- if (ret) done= -(-ret | -done);
+ if (ret) done = -(-ret | -done);
}
}
- if (done!=1 && recursion < 4 && (sc=CTX_wm_screen(C))) {
- bContextDataCallback cb= sc->context;
- C->data.recursion= 4;
+ if (done != 1 && recursion < 4 && (sc = CTX_wm_screen(C))) {
+ bContextDataCallback cb = sc->context;
+ C->data.recursion = 4;
if (cb) {
ret = cb(C, member, result);
- if (ret) done= -(-ret | -done);
+ if (ret) done = -(-ret | -done);
}
}
- C->data.recursion= recursion;
+ C->data.recursion = recursion;
return done;
}
@@ -315,7 +315,7 @@ static void *ctx_data_pointer_get(const bContext *C, const char *member)
{
bContextDataResult result;
- if (C && ctx_data_get((bContext*)C, member, &result)==1)
+ if (C && ctx_data_get((bContext *)C, member, &result) == 1)
return result.ptr.data;
return NULL;
@@ -327,15 +327,15 @@ static int ctx_data_pointer_verify(const bContext *C, const char *member, void *
/* if context is NULL, pointer must be NULL too and that is a valid return */
if (C == NULL) {
- *pointer= NULL;
+ *pointer = NULL;
return 1;
}
- else if (ctx_data_get((bContext*)C, member, &result)==1) {
- *pointer= result.ptr.data;
+ else if (ctx_data_get((bContext *)C, member, &result) == 1) {
+ *pointer = result.ptr.data;
return 1;
}
else {
- *pointer= NULL;
+ *pointer = NULL;
return 0;
}
}
@@ -344,13 +344,13 @@ static int ctx_data_collection_get(const bContext *C, const char *member, ListBa
{
bContextDataResult result;
- if (ctx_data_get((bContext*)C, member, &result)==1) {
- *list= result.list;
+ if (ctx_data_get((bContext *)C, member, &result) == 1) {
+ *list = result.list;
return 1;
}
- list->first= NULL;
- list->last= NULL;
+ list->first = NULL;
+ list->last = NULL;
return 0;
}
@@ -359,7 +359,7 @@ PointerRNA CTX_data_pointer_get(const bContext *C, const char *member)
{
bContextDataResult result;
- if (ctx_data_get((bContext*)C, member, &result)==1)
+ if (ctx_data_get((bContext *)C, member, &result) == 1)
return result.ptr;
else
return PointerRNA_NULL;
@@ -379,11 +379,11 @@ ListBase CTX_data_collection_get(const bContext *C, const char *member)
{
bContextDataResult result;
- if (ctx_data_get((bContext*)C, member, &result)==1) {
+ if (ctx_data_get((bContext *)C, member, &result) == 1) {
return result.list;
}
else {
- ListBase list= {NULL, NULL};
+ ListBase list = {NULL, NULL};
return list;
}
}
@@ -392,17 +392,17 @@ ListBase CTX_data_collection_get(const bContext *C, const char *member)
int CTX_data_get(const bContext *C, const char *member, PointerRNA *r_ptr, ListBase *r_lb, short *r_type)
{
bContextDataResult result;
- int ret= ctx_data_get((bContext*)C, member, &result);
+ int ret = ctx_data_get((bContext *)C, member, &result);
- if (ret==1) {
- *r_ptr= result.ptr;
- *r_lb= result.list;
- *r_type= result.type;
+ if (ret == 1) {
+ *r_ptr = result.ptr;
+ *r_lb = result.list;
+ *r_type = result.type;
}
else {
memset(r_ptr, 0, sizeof(*r_ptr));
memset(r_lb, 0, sizeof(*r_lb));
- *r_type= 0;
+ *r_type = 0;
}
return ret;
@@ -418,8 +418,8 @@ static void data_dir_add(ListBase *lb, const char *member)
if (BLI_findstring(lb, member, offsetof(LinkData, data)))
return;
- link= MEM_callocN(sizeof(LinkData), "LinkData");
- link->data= (void*)member;
+ link = MEM_callocN(sizeof(LinkData), "LinkData");
+ link->data = (void *)member;
BLI_addtail(lb, link);
}
@@ -437,32 +437,32 @@ ListBase CTX_data_dir_get(const bContext *C)
if (C->wm.store) {
bContextStoreEntry *entry;
- for (entry=C->wm.store->entries.first; entry; entry=entry->next)
+ for (entry = C->wm.store->entries.first; entry; entry = entry->next)
data_dir_add(&lb, entry->name);
}
- if ((ar=CTX_wm_region(C)) && ar->type && ar->type->context) {
+ if ((ar = CTX_wm_region(C)) && ar->type && ar->type->context) {
memset(&result, 0, sizeof(result));
ar->type->context(C, "", &result);
if (result.dir)
- for (a=0; result.dir[a]; a++)
+ for (a = 0; result.dir[a]; a++)
data_dir_add(&lb, result.dir[a]);
}
- if ((sa=CTX_wm_area(C)) && sa->type && sa->type->context) {
+ if ((sa = CTX_wm_area(C)) && sa->type && sa->type->context) {
memset(&result, 0, sizeof(result));
sa->type->context(C, "", &result);
if (result.dir)
- for (a=0; result.dir[a]; a++)
+ for (a = 0; result.dir[a]; a++)
data_dir_add(&lb, result.dir[a]);
}
- if ((sc=CTX_wm_screen(C)) && sc->context) {
- bContextDataCallback cb= sc->context;
+ if ((sc = CTX_wm_screen(C)) && sc->context) {
+ bContextDataCallback cb = sc->context;
memset(&result, 0, sizeof(result));
cb(C, "", &result);
if (result.dir)
- for (a=0; result.dir[a]; a++)
+ for (a = 0; result.dir[a]; a++)
data_dir_add(&lb, result.dir[a]);
}
@@ -493,7 +493,7 @@ void CTX_data_id_list_add(bContextDataResult *result, ID *id)
{
CollectionPointerLink *link;
- link= MEM_callocN(sizeof(CollectionPointerLink), "CTX_data_id_list_add");
+ link = MEM_callocN(sizeof(CollectionPointerLink), "CTX_data_id_list_add");
RNA_id_pointer_create(id, &link->ptr);
BLI_addtail(&result->list, link);
@@ -503,18 +503,18 @@ void CTX_data_list_add(bContextDataResult *result, ID *id, StructRNA *type, void
{
CollectionPointerLink *link;
- link= MEM_callocN(sizeof(CollectionPointerLink), "CTX_data_list_add");
+ link = MEM_callocN(sizeof(CollectionPointerLink), "CTX_data_list_add");
RNA_pointer_create(id, type, data, &link->ptr);
BLI_addtail(&result->list, link);
}
-int ctx_data_list_count(const bContext *C, int (*func)(const bContext*, ListBase*))
+int ctx_data_list_count(const bContext *C, int (*func)(const bContext *, ListBase *))
{
ListBase list;
if (func(C, &list)) {
- int tot= BLI_countlist(&list);
+ int tot = BLI_countlist(&list);
BLI_freelistN(&list);
return tot;
}
@@ -524,12 +524,12 @@ int ctx_data_list_count(const bContext *C, int (*func)(const bContext*, ListBase
void CTX_data_dir_set(bContextDataResult *result, const char **dir)
{
- result->dir= dir;
+ result->dir = dir;
}
void CTX_data_type_set(bContextDataResult *result, short type)
{
- result->type= type;
+ result->type = type;
}
short CTX_data_type_get(bContextDataResult *result)
@@ -564,7 +564,7 @@ ScrArea *CTX_wm_area(const bContext *C)
SpaceLink *CTX_wm_space_data(const bContext *C)
{
ScrArea *sa = CTX_wm_area(C);
- return (sa)? sa->spacedata.first: NULL;
+ return (sa) ? sa->spacedata.first : NULL;
}
ARegion *CTX_wm_region(const bContext *C)
@@ -575,7 +575,7 @@ ARegion *CTX_wm_region(const bContext *C)
void *CTX_wm_region_data(const bContext *C)
{
ARegion *ar = CTX_wm_region(C);
- return (ar)? ar->regiondata: NULL;
+ return (ar) ? ar->regiondata : NULL;
}
struct ARegion *CTX_wm_menu(const bContext *C)
@@ -594,7 +594,7 @@ struct ReportList *CTX_wm_reports(const bContext *C)
View3D *CTX_wm_view3d(const bContext *C)
{
ScrArea *sa = CTX_wm_area(C);
- if (sa && sa->spacetype==SPACE_VIEW3D)
+ if (sa && sa->spacetype == SPACE_VIEW3D)
return sa->spacedata.first;
return NULL;
}
@@ -604,7 +604,7 @@ RegionView3D *CTX_wm_region_view3d(const bContext *C)
ScrArea *sa = CTX_wm_area(C);
ARegion *ar = CTX_wm_region(C);
- if (sa && sa->spacetype==SPACE_VIEW3D)
+ if (sa && sa->spacetype == SPACE_VIEW3D)
if (ar)
return ar->regiondata;
return NULL;
@@ -613,7 +613,7 @@ RegionView3D *CTX_wm_region_view3d(const bContext *C)
struct SpaceText *CTX_wm_space_text(const bContext *C)
{
ScrArea *sa = CTX_wm_area(C);
- if (sa && sa->spacetype==SPACE_TEXT)
+ if (sa && sa->spacetype == SPACE_TEXT)
return sa->spacedata.first;
return NULL;
}
@@ -621,7 +621,7 @@ struct SpaceText *CTX_wm_space_text(const bContext *C)
struct SpaceConsole *CTX_wm_space_console(const bContext *C)
{
ScrArea *sa = CTX_wm_area(C);
- if (sa && sa->spacetype==SPACE_CONSOLE)
+ if (sa && sa->spacetype == SPACE_CONSOLE)
return sa->spacedata.first;
return NULL;
}
@@ -629,7 +629,7 @@ struct SpaceConsole *CTX_wm_space_console(const bContext *C)
struct SpaceImage *CTX_wm_space_image(const bContext *C)
{
ScrArea *sa = CTX_wm_area(C);
- if (sa && sa->spacetype==SPACE_IMAGE)
+ if (sa && sa->spacetype == SPACE_IMAGE)
return sa->spacedata.first;
return NULL;
}
@@ -637,7 +637,7 @@ struct SpaceImage *CTX_wm_space_image(const bContext *C)
struct SpaceButs *CTX_wm_space_buts(const bContext *C)
{
ScrArea *sa = CTX_wm_area(C);
- if (sa && sa->spacetype==SPACE_BUTS)
+ if (sa && sa->spacetype == SPACE_BUTS)
return sa->spacedata.first;
return NULL;
}
@@ -645,7 +645,7 @@ struct SpaceButs *CTX_wm_space_buts(const bContext *C)
struct SpaceFile *CTX_wm_space_file(const bContext *C)
{
ScrArea *sa = CTX_wm_area(C);
- if (sa && sa->spacetype==SPACE_FILE)
+ if (sa && sa->spacetype == SPACE_FILE)
return sa->spacedata.first;
return NULL;
}
@@ -653,7 +653,7 @@ struct SpaceFile *CTX_wm_space_file(const bContext *C)
struct SpaceSeq *CTX_wm_space_seq(const bContext *C)
{
ScrArea *sa = CTX_wm_area(C);
- if (sa && sa->spacetype==SPACE_SEQ)
+ if (sa && sa->spacetype == SPACE_SEQ)
return sa->spacedata.first;
return NULL;
}
@@ -661,7 +661,7 @@ struct SpaceSeq *CTX_wm_space_seq(const bContext *C)
struct SpaceOops *CTX_wm_space_outliner(const bContext *C)
{
ScrArea *sa = CTX_wm_area(C);
- if (sa && sa->spacetype==SPACE_OUTLINER)
+ if (sa && sa->spacetype == SPACE_OUTLINER)
return sa->spacedata.first;
return NULL;
}
@@ -669,7 +669,7 @@ struct SpaceOops *CTX_wm_space_outliner(const bContext *C)
struct SpaceNla *CTX_wm_space_nla(const bContext *C)
{
ScrArea *sa = CTX_wm_area(C);
- if (sa && sa->spacetype==SPACE_NLA)
+ if (sa && sa->spacetype == SPACE_NLA)
return sa->spacedata.first;
return NULL;
}
@@ -677,7 +677,7 @@ struct SpaceNla *CTX_wm_space_nla(const bContext *C)
struct SpaceTime *CTX_wm_space_time(const bContext *C)
{
ScrArea *sa = CTX_wm_area(C);
- if (sa && sa->spacetype==SPACE_TIME)
+ if (sa && sa->spacetype == SPACE_TIME)
return sa->spacedata.first;
return NULL;
}
@@ -685,7 +685,7 @@ struct SpaceTime *CTX_wm_space_time(const bContext *C)
struct SpaceNode *CTX_wm_space_node(const bContext *C)
{
ScrArea *sa = CTX_wm_area(C);
- if (sa && sa->spacetype==SPACE_NODE)
+ if (sa && sa->spacetype == SPACE_NODE)
return sa->spacedata.first;
return NULL;
}
@@ -693,7 +693,7 @@ struct SpaceNode *CTX_wm_space_node(const bContext *C)
struct SpaceLogic *CTX_wm_space_logic(const bContext *C)
{
ScrArea *sa = CTX_wm_area(C);
- if (sa && sa->spacetype==SPACE_LOGIC)
+ if (sa && sa->spacetype == SPACE_LOGIC)
return sa->spacedata.first;
return NULL;
}
@@ -701,7 +701,7 @@ struct SpaceLogic *CTX_wm_space_logic(const bContext *C)
struct SpaceIpo *CTX_wm_space_graph(const bContext *C)
{
ScrArea *sa = CTX_wm_area(C);
- if (sa && sa->spacetype==SPACE_IPO)
+ if (sa && sa->spacetype == SPACE_IPO)
return sa->spacedata.first;
return NULL;
}
@@ -709,7 +709,7 @@ struct SpaceIpo *CTX_wm_space_graph(const bContext *C)
struct SpaceAction *CTX_wm_space_action(const bContext *C)
{
ScrArea *sa = CTX_wm_area(C);
- if (sa && sa->spacetype==SPACE_ACTION)
+ if (sa && sa->spacetype == SPACE_ACTION)
return sa->spacedata.first;
return NULL;
}
@@ -717,7 +717,7 @@ struct SpaceAction *CTX_wm_space_action(const bContext *C)
struct SpaceInfo *CTX_wm_space_info(const bContext *C)
{
ScrArea *sa = CTX_wm_area(C);
- if (sa && sa->spacetype==SPACE_INFO)
+ if (sa && sa->spacetype == SPACE_INFO)
return sa->spacedata.first;
return NULL;
}
@@ -725,7 +725,7 @@ struct SpaceInfo *CTX_wm_space_info(const bContext *C)
struct SpaceUserPref *CTX_wm_space_userpref(const bContext *C)
{
ScrArea *sa = CTX_wm_area(C);
- if (sa && sa->spacetype==SPACE_USERPREF)
+ if (sa && sa->spacetype == SPACE_USERPREF)
return sa->spacedata.first;
return NULL;
}
@@ -733,58 +733,58 @@ struct SpaceUserPref *CTX_wm_space_userpref(const bContext *C)
struct SpaceClip *CTX_wm_space_clip(const bContext *C)
{
ScrArea *sa = CTX_wm_area(C);
- if (sa && sa->spacetype==SPACE_CLIP)
+ if (sa && sa->spacetype == SPACE_CLIP)
return sa->spacedata.first;
return NULL;
}
void CTX_wm_manager_set(bContext *C, wmWindowManager *wm)
{
- C->wm.manager= wm;
- C->wm.window= NULL;
- C->wm.screen= NULL;
- C->wm.area= NULL;
- C->wm.region= NULL;
+ C->wm.manager = wm;
+ C->wm.window = NULL;
+ C->wm.screen = NULL;
+ C->wm.area = NULL;
+ C->wm.region = NULL;
}
void CTX_wm_window_set(bContext *C, wmWindow *win)
{
- C->wm.window= win;
- C->wm.screen= (win)? win->screen: NULL;
+ C->wm.window = win;
+ C->wm.screen = (win) ? win->screen : NULL;
if (C->wm.screen)
- C->data.scene= C->wm.screen->scene;
- C->wm.area= NULL;
- C->wm.region= NULL;
+ C->data.scene = C->wm.screen->scene;
+ C->wm.area = NULL;
+ C->wm.region = NULL;
}
void CTX_wm_screen_set(bContext *C, bScreen *screen)
{
- C->wm.screen= screen;
+ C->wm.screen = screen;
if (C->wm.screen)
- C->data.scene= C->wm.screen->scene;
- C->wm.area= NULL;
- C->wm.region= NULL;
+ C->data.scene = C->wm.screen->scene;
+ C->wm.area = NULL;
+ C->wm.region = NULL;
}
void CTX_wm_area_set(bContext *C, ScrArea *area)
{
- C->wm.area= area;
- C->wm.region= NULL;
+ C->wm.area = area;
+ C->wm.region = NULL;
}
void CTX_wm_region_set(bContext *C, ARegion *region)
{
- C->wm.region= region;
+ C->wm.region = region;
}
void CTX_wm_menu_set(bContext *C, ARegion *menu)
{
- C->wm.menu= menu;
+ C->wm.menu = menu;
}
void CTX_wm_operator_poll_msg_set(bContext *C, const char *msg)
{
- C->wm.operator_poll_msg= msg;
+ C->wm.operator_poll_msg = msg;
}
const char *CTX_wm_operator_poll_msg_get(bContext *C)
@@ -798,7 +798,7 @@ Main *CTX_data_main(const bContext *C)
{
Main *bmain;
- if (ctx_data_pointer_verify(C, "blend_data", (void*)&bmain))
+ if (ctx_data_pointer_verify(C, "blend_data", (void *)&bmain))
return bmain;
else
return C->data.main;
@@ -806,14 +806,14 @@ Main *CTX_data_main(const bContext *C)
void CTX_data_main_set(bContext *C, Main *bmain)
{
- C->data.main= bmain;
+ C->data.main = bmain;
}
Scene *CTX_data_scene(const bContext *C)
{
Scene *scene;
- if (ctx_data_pointer_verify(C, "scene", (void*)&scene))
+ if (ctx_data_pointer_verify(C, "scene", (void *)&scene))
return scene;
else
return C->data.scene;
@@ -821,7 +821,7 @@ Scene *CTX_data_scene(const bContext *C)
int CTX_data_mode_enum(const bContext *C)
{
- Object *obedit= CTX_data_edit_object(C);
+ Object *obedit = CTX_data_edit_object(C);
if (obedit) {
switch (obedit->type) {
@@ -846,7 +846,7 @@ int CTX_data_mode_enum(const bContext *C)
if (ob) {
if (ob->mode & OB_MODE_POSE) return CTX_MODE_POSE;
- else if (ob->mode & OB_MODE_SCULPT) return CTX_MODE_SCULPT;
+ else if (ob->mode & OB_MODE_SCULPT) return CTX_MODE_SCULPT;
else if (ob->mode & OB_MODE_WEIGHT_PAINT) return CTX_MODE_PAINT_WEIGHT;
else if (ob->mode & OB_MODE_VERTEX_PAINT) return CTX_MODE_PAINT_VERTEX;
else if (ob->mode & OB_MODE_TEXTURE_PAINT) return CTX_MODE_PAINT_TEXTURE;
@@ -884,7 +884,7 @@ const char *CTX_data_mode_string(const bContext *C)
void CTX_data_scene_set(bContext *C, Scene *scene)
{
- C->data.scene= scene;
+ C->data.scene = scene;
}
ToolSettings *CTX_data_tool_settings(const bContext *C)