@@ -2426,11 +2426,11 @@ static int vimModMaskToEventModifierFlags(int mods)
24262426#ifdef FEAT_BEVAL
24272427
24282428 BalloonEval *
2429- gui_mch_create_beval_area (target, mesg, mesgCB, clientData)
2430- void *target;
2431- char_u *mesg;
2432- void (*mesgCB)(BalloonEval *, int );
2433- void *clientData;
2429+ gui_mch_create_beval_area (
2430+ void *target,
2431+ char_u *mesg,
2432+ void (*mesgCB)(BalloonEval *, int ),
2433+ void *clientData)
24342434{
24352435 BalloonEval *beval;
24362436
@@ -2446,8 +2446,7 @@ static int vimModMaskToEventModifierFlags(int mods)
24462446}
24472447
24482448 void
2449- gui_mch_enable_beval_area (beval)
2450- BalloonEval *beval;
2449+ gui_mch_enable_beval_area (BalloonEval *beval)
24512450{
24522451 // Set the balloon delay when enabling balloon eval.
24532452 float delay = p_bdlay/1000 .0f - MMBalloonEvalInternalDelay;
@@ -2458,8 +2457,7 @@ static int vimModMaskToEventModifierFlags(int mods)
24582457}
24592458
24602459 void
2461- gui_mch_disable_beval_area (beval)
2462- BalloonEval *beval;
2460+ gui_mch_disable_beval_area (BalloonEval *beval)
24632461{
24642462 // NOTE: An empty tool tip indicates that the tool tip window should hide.
24652463 [[MMBackend sharedInstance ] queueMessage: SetTooltipMsgID properties:
@@ -2470,9 +2468,7 @@ static int vimModMaskToEventModifierFlags(int mods)
24702468 * Show a balloon with "mesg".
24712469 */
24722470 void
2473- gui_mch_post_balloon (beval, mesg)
2474- BalloonEval *beval;
2475- char_u *mesg;
2471+ gui_mch_post_balloon (BalloonEval *beval, char_u *mesg)
24762472{
24772473 NSString *toolTip = [NSString stringWithVimString: mesg];
24782474 [[MMBackend sharedInstance ] setLastToolTip: toolTip];
0 commit comments