From be699d3986c005be5089bfb8701a47d6a054afb9 Mon Sep 17 00:00:00 2001 From: "Derek \"Turtle\" Roe" Date: Wed, 17 Mar 2021 04:27:46 -0500 Subject: [PATCH] Update PartialGroupBox.cpp Remove punctuation, fix title case --- .../Project64/UserInterface/WTLControls/PartialGroupBox.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Project64/UserInterface/WTLControls/PartialGroupBox.cpp b/Source/Project64/UserInterface/WTLControls/PartialGroupBox.cpp index f61ee4b9e..7819e3591 100644 --- a/Source/Project64/UserInterface/WTLControls/PartialGroupBox.cpp +++ b/Source/Project64/UserInterface/WTLControls/PartialGroupBox.cpp @@ -5,7 +5,7 @@ BOOL CPartialGroupBox::Attach(HWND hWnd) ATLASSUME(m_hWnd == NULL); ATLASSERT(::IsWindow(hWnd)); - // Allocate the thunk structure here, where we can fail gracefully. + // Allocate the thunk structure here, where we can fail gracefully BOOL result = m_thunk.Init(GetWindowProc(), this); if (result == FALSE) @@ -43,7 +43,7 @@ void CPartialGroupBox::OnPaint(HDC /*hDC*/) { CPaintDC dc(m_hWnd); - //paint groupbox manually + // Paint group box manually CRect controlrect; GetClientRect(controlrect); //::MapWindowPoints(HWND_DESKTOP, GetParent(), (LPPOINT)(LPRECT)controlrect, (sizeof(RECT)/sizeof(POINT))); @@ -102,7 +102,7 @@ void CPartialGroupBox::OnPaint(HDC /*hDC*/) dc.FillRect(fontrect, GetSysColor(COLOR_BTNFACE)); fontrect.DeflateRect(2, 0); - //Draw Caption + // Draw caption dc.SetBkMode(OPAQUE); dc.SetBkColor(GetSysColor(COLOR_BTNFACE));