From 31d2ee9bf77bb991ea4779c47379b2cee84b27ed Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 6 Mar 2012 18:40:15 +0000 Subject: style cleanup, brackets in else/if, some indentation. --- source/blender/windowmanager/intern/wm_draw.c | 3 +-- source/blender/windowmanager/intern/wm_event_system.c | 9 +++------ source/blender/windowmanager/intern/wm_init_exit.c | 6 ++---- 3 files changed, 6 insertions(+), 12 deletions(-) (limited to 'source/blender/windowmanager') diff --git a/source/blender/windowmanager/intern/wm_draw.c b/source/blender/windowmanager/intern/wm_draw.c index df4ebfd9b9f..d386f65498f 100644 --- a/source/blender/windowmanager/intern/wm_draw.c +++ b/source/blender/windowmanager/intern/wm_draw.c @@ -576,8 +576,7 @@ static void wm_method_draw_triple(bContext *C, wmWindow *win) else { win->drawdata= MEM_callocN(sizeof(wmDrawTriple), "wmDrawTriple"); - if(!wm_triple_gen_textures(win, win->drawdata)) - { + if(!wm_triple_gen_textures(win, win->drawdata)) { wm_draw_triple_fail(C, win); return; } diff --git a/source/blender/windowmanager/intern/wm_event_system.c b/source/blender/windowmanager/intern/wm_event_system.c index d78faa76855..1d2252b7ceb 100644 --- a/source/blender/windowmanager/intern/wm_event_system.c +++ b/source/blender/windowmanager/intern/wm_event_system.c @@ -690,8 +690,7 @@ static wmOperator *wm_operator_create(wmWindowManager *wm, wmOperatorType *ot, P break; /* skip invalid properties */ - if (strcmp(RNA_property_identifier(prop), otmacro->idname) == 0) - { + if (strcmp(RNA_property_identifier(prop), otmacro->idname) == 0) { wmOperatorType *otm= WM_operatortype_find(otmacro->idname, 0); PointerRNA someptr = RNA_property_pointer_get(properties, prop); wmOperator *opm= wm_operator_create(wm, otm, &someptr, NULL); @@ -2486,8 +2485,7 @@ static void attach_ndof_data(wmEvent* event, const GHOST_TEventNDOFMotionData* g data->ry = s * ghost->ry; data->rz = s * ghost->rz; - if (U.ndof_flag & NDOF_ZOOM_UPDOWN) - { + if (U.ndof_flag & NDOF_ZOOM_UPDOWN) { /* rotate so Y is where Z was */ data->ty = s * ghost->tz; data->tz = s * ghost->ty; @@ -2502,8 +2500,7 @@ static void attach_ndof_data(wmEvent* event, const GHOST_TEventNDOFMotionData* g data->rz = s * ghost->ry; #endif } - else - { + else { data->ty = s * ghost->ty; data->tz = s * ghost->tz; } diff --git a/source/blender/windowmanager/intern/wm_init_exit.c b/source/blender/windowmanager/intern/wm_init_exit.c index 1ae03ca9f6f..b9bc6d04654 100644 --- a/source/blender/windowmanager/intern/wm_init_exit.c +++ b/source/blender/windowmanager/intern/wm_init_exit.c @@ -271,8 +271,7 @@ int WM_init_game(bContext *C) ar->winx = ar->winrct.xmax + 1; ar->winy = ar->winrct.ymax + 1; } - else - { + else { GHOST_RectangleHandle rect = GHOST_GetClientBounds(win->ghostwin); ar->winrct.ymax = GHOST_GetHeightRectangle(rect); ar->winrct.xmax = GHOST_GetWidthRectangle(rect); @@ -287,8 +286,7 @@ int WM_init_game(bContext *C) return 1; } - else - { + else { ReportTimerInfo *rti; BKE_report(&wm->reports, RPT_ERROR, "No valid 3D View found. Game auto start is not possible."); -- cgit v1.2.3