Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnderground78 <underground78@users.sourceforge.net>2012-06-02 15:53:15 +0400
committerUnderground78 <underground78@users.sourceforge.net>2012-06-02 15:53:15 +0400
commitddcfe82895fa59ec07692a972931a0e0ae4196b7 (patch)
treeb551f3b98c6951c387f7eb02b5903e3ca3062859 /src/CmdUI/CmdUI.cpp
parent095b3d0e65730e1d31733a403fff4787cb674429 (diff)
Cosmetics: make the return statements consistent.
Patch partially by XhmikosR. git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@4978 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/CmdUI/CmdUI.cpp')
-rw-r--r--src/CmdUI/CmdUI.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CmdUI/CmdUI.cpp b/src/CmdUI/CmdUI.cpp
index e9857e87a..50e3e5e71 100644
--- a/src/CmdUI/CmdUI.cpp
+++ b/src/CmdUI/CmdUI.cpp
@@ -58,7 +58,7 @@ LRESULT CCmdUIDialog::DefWindowProc(UINT message, WPARAM wParam, LPARAM lParam)
SendMessage(WM_KICKIDLE);
}
- return(ret);
+ return ret;
}
BEGIN_MESSAGE_MAP(CCmdUIDialog, CDialog)
@@ -180,7 +180,7 @@ LRESULT CCmdUIPropertyPage::DefWindowProc(UINT message, WPARAM wParam, LPARAM lP
SendMessage(WM_KICKIDLE);
}
- return(ret);
+ return ret;
}
BEGIN_MESSAGE_MAP(CCmdUIPropertyPage, CPropertyPage)