Merge pull request #5168 from ckelsel/master

fix button_set_locked no return statement
This commit is contained in:
David Fort 2018-12-24 11:17:16 +01:00 committed by GitHub
commit 15fd55ded8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)