From: kunming.xie Date: Mon, 24 Dec 2018 06:52:59 +0000 (+0800) Subject: fix button_set_locked no return statement X-Git-Tag: 2.0.0~549^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3ef6dd2f7c67bc94f73653be31825db508dbe65a;p=platform%2Fupstream%2Ffreerdp.git fix button_set_locked no return statement --- diff --git a/client/Windows/wf_floatbar.c b/client/Windows/wf_floatbar.c index fc1d4ac..1c0be8a 100644 --- a/client/Windows/wf_floatbar.c +++ b/client/Windows/wf_floatbar.c @@ -217,6 +217,7 @@ static BOOL button_set_locked(Button* button, BOOL locked) InvalidateRect(button->floatbar->hwnd, NULL, FALSE); UpdateWindow(button->floatbar->hwnd); + return TRUE; } static BOOL update_locked_state(wfFloatBar* floatbar)