WM: remove unused return values

This commit is contained in:
Campbell Barton 2017-06-06 23:04:46 +10:00
parent 7f01329a84
commit e17a90074f
7 changed files with 10 additions and 26 deletions

View File

@ -1117,7 +1117,7 @@ static ManipulatorGroup *manipulatorgroup_init(wmManipulatorGroup *wgroup)
/**
* Custom handler for manipulator widgets
*/
static int manipulator_handler(
static void manipulator_handler(
bContext *C, wmManipulator *widget, const wmEvent *UNUSED(event), const int UNUSED(flag))
{
const ScrArea *sa = CTX_wm_area(C);
@ -1131,8 +1131,6 @@ static int manipulator_handler(
}
ED_region_tag_redraw(ar);
return OPERATOR_PASS_THROUGH;
}
static void WIDGETGROUP_manipulator_init(const bContext *UNUSED(C), wmManipulatorGroup *wgroup)

View File

@ -127,15 +127,13 @@ static void manipulator_arrow2d_draw(const bContext *UNUSED(C), struct wmManipul
}
}
static int manipulator_arrow2d_invoke(
static void manipulator_arrow2d_invoke(
bContext *UNUSED(C), struct wmManipulator *manipulator, const wmEvent *UNUSED(event))
{
ManipulatorInteraction *inter = MEM_callocN(sizeof(ManipulatorInteraction), __func__);
copy_v2_v2(inter->init_origin, manipulator->origin);
manipulator->interaction_data = inter;
return OPERATOR_RUNNING_MODAL;
}
static int manipulator_arrow2d_intersect(

View File

@ -256,7 +256,7 @@ static void manipulator_arrow_draw(const bContext *UNUSED(C), wmManipulator *man
* Calculate arrow offset independent from prop min value,
* meaning the range will not be offset by min value first.
*/
static int manipulator_arrow_handler(bContext *C, wmManipulator *manipulator, const wmEvent *event, const int flag)
static void manipulator_arrow_handler(bContext *C, wmManipulator *manipulator, const wmEvent *event, const int flag)
{
ArrowManipulator *arrow = (ArrowManipulator *)manipulator;
ManipulatorInteraction *inter = manipulator->interaction_data;
@ -366,12 +366,10 @@ static int manipulator_arrow_handler(bContext *C, wmManipulator *manipulator, co
/* tag the region for redraw */
ED_region_tag_redraw(ar);
WM_event_add_mousemove(C);
return OPERATOR_PASS_THROUGH;
}
static int manipulator_arrow_invoke(
static void manipulator_arrow_invoke(
bContext *UNUSED(C), wmManipulator *manipulator, const wmEvent *event)
{
ArrowManipulator *arrow = (ArrowManipulator *)manipulator;
@ -393,8 +391,6 @@ static int manipulator_arrow_invoke(
manipulator_arrow_get_final_pos(manipulator, inter->init_origin);
manipulator->interaction_data = inter;
return OPERATOR_RUNNING_MODAL;
}
static void manipulator_arrow_prop_data_update(wmManipulator *manipulator, const int slot)

View File

@ -398,7 +398,7 @@ static bool manipulator_rect_transform_get_prop_value(wmManipulator *manipulator
return true;
}
static int manipulator_rect_transform_invoke(
static void manipulator_rect_transform_invoke(
bContext *UNUSED(C), wmManipulator *manipulator, const wmEvent *event)
{
RectTransformManipulator *cage = (RectTransformManipulator *)manipulator;
@ -411,11 +411,9 @@ static int manipulator_rect_transform_invoke(
data->orig_mouse[1] = event->mval[1];
manipulator->interaction_data = data;
return OPERATOR_RUNNING_MODAL;
}
static int manipulator_rect_transform_handler(
static void manipulator_rect_transform_handler(
bContext *C, wmManipulator *manipulator, const wmEvent *event,
const int UNUSED(flag))
{
@ -505,8 +503,6 @@ static int manipulator_rect_transform_handler(
/* tag the region for redraw */
ED_region_tag_redraw(CTX_wm_region(C));
return OPERATOR_PASS_THROUGH;
}
static void manipulator_rect_transform_prop_data_update(wmManipulator *manipulator, const int slot)

View File

@ -315,7 +315,7 @@ static void manipulator_dial_draw(const bContext *C, wmManipulator *manipulator)
}
}
static int manipulator_dial_invoke(
static void manipulator_dial_invoke(
bContext *UNUSED(C), wmManipulator *manipulator, const wmEvent *event)
{
DialInteraction *inter = MEM_callocN(sizeof(DialInteraction), __func__);
@ -324,8 +324,6 @@ static int manipulator_dial_invoke(
inter->init_mval[1] = event->mval[1];
manipulator->interaction_data = inter;
return OPERATOR_RUNNING_MODAL;
}

View File

@ -174,7 +174,7 @@ static void manipulator_primitive_draw(const bContext *UNUSED(C), wmManipulator
(manipulator->state & WM_MANIPULATOR_HIGHLIGHT));
}
static int manipulator_primitive_invoke(
static void manipulator_primitive_invoke(
bContext *UNUSED(C), wmManipulator *manipulator, const wmEvent *UNUSED(event))
{
ManipulatorInteraction *inter = MEM_callocN(sizeof(ManipulatorInteraction), __func__);
@ -183,8 +183,6 @@ static int manipulator_primitive_invoke(
inter->init_scale = manipulator->scale;
manipulator->interaction_data = inter;
return OPERATOR_RUNNING_MODAL;
}

View File

@ -39,10 +39,10 @@ typedef void (*wmManipulatorGroupFnDrawPrepare)(const struct bContext *, struct
typedef void (*wmManipulatorFnDraw)(const struct bContext *, struct wmManipulator *);
typedef void (*wmManipulatorFnDrawSelect)(const struct bContext *, struct wmManipulator *, int);
typedef int (*wmManipulatorFnIntersect)(struct bContext *, struct wmManipulator *, const struct wmEvent *);
typedef int (*wmManipulatorFnHandler)(struct bContext *, struct wmManipulator *, const struct wmEvent *, const int);
typedef void (*wmManipulatorFnHandler)(struct bContext *, struct wmManipulator *, const struct wmEvent *, const int);
typedef void (*wmManipulatorFnPropDataUpdate)(struct wmManipulator *, int);
typedef void (*wmManipulatorFnFinalPositionGet)(struct wmManipulator *, float[]);
typedef int (*wmManipulatorFnInvoke)(struct bContext *, struct wmManipulator *, const struct wmEvent *);
typedef void (*wmManipulatorFnInvoke)(struct bContext *, struct wmManipulator *, const struct wmEvent *);
typedef void (*wmManipulatorFnExit)(struct bContext *, struct wmManipulator *, const bool);
typedef int (*wmManipulatorFnCursorGet)(struct wmManipulator *);
typedef void (*wmManipulatorFnSelect)(struct bContext *, struct wmManipulator *, const int);