https://git.reactos.org/?p=reactos.git;a=commitdiff;h=63fa6747827cb72e4ab303...
commit 63fa6747827cb72e4ab30345b9a7be11212d6009 Author: Joachim Henze joachim.henze@reactos.org AuthorDate: Sun Sep 25 15:48:54 2022 +0200 Commit: GitHub noreply@github.com CommitDate: Sun Sep 25 16:48:54 2022 +0300
[EXPLORER] Cleanup after last commit (#4722)
Improves code that was added by 0.4.15-dev-5078-g 46de3a22acc without any review yesterday.
CORE-15369 --- base/shell/explorer/traywnd.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/base/shell/explorer/traywnd.cpp b/base/shell/explorer/traywnd.cpp index 2b648e80568..b8437fe23cd 100644 --- a/base/shell/explorer/traywnd.cpp +++ b/base/shell/explorer/traywnd.cpp @@ -3045,10 +3045,8 @@ HandleTrayContextMenu:
LRESULT OnNcLButtonUp(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { - if (CheckShowDesktopButtonClick(lParam, bHandled)) - return 0; - - return 0; + CheckShowDesktopButtonClick(lParam, bHandled); + return FALSE; }
LRESULT OnAppTrayDestroy(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)