doc/CppUnit-win.dox | 2 doc/Doxyfile.in | 2 src/msvc6/testrunner/DynamicWindow/SizeCBar.cpp | 36 +++++----- src/msvc6/testrunner/DynamicWindow/cdxCDynamicControlsManager.h | 6 - src/msvc6/testrunner/DynamicWindow/doc/cdxCDynamicWnd-DOC.html | 10 +- 5 files changed, 27 insertions(+), 29 deletions(-)
New commits: commit 1f68ba5f7ad9bf04cf6a9e449e5b7cbb4dc27a8c Author: dennisroczek <[email protected]> Date: Mon Mar 13 23:49:25 2017 +0000 fix typo/grammar: "the the" --> the Change-Id: I03c1e1118c0574863f9460d1d7fc543b44d59efe Reviewed-on: https://gerrit.libreoffice.org/35152 Reviewed-by: Noel Grandin <[email protected]> Tested-by: Noel Grandin <[email protected]> diff --git a/doc/CppUnit-win.dox b/doc/CppUnit-win.dox index 7c29dc8..b20cdee 100644 --- a/doc/CppUnit-win.dox +++ b/doc/CppUnit-win.dox @@ -829,7 +829,7 @@ HAVE_DOT = NO # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the -# the CLASS_DIAGRAMS tag to NO. +# CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index 4398a64..a8c9f97 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -525,7 +525,7 @@ HAVE_DOT = @enable_dot@ # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the -# the CLASS_DIAGRAMS tag to NO. +# CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES diff --git a/src/msvc6/testrunner/DynamicWindow/SizeCBar.cpp b/src/msvc6/testrunner/DynamicWindow/SizeCBar.cpp index ea347dd..e1eecf8 100644 --- a/src/msvc6/testrunner/DynamicWindow/SizeCBar.cpp +++ b/src/msvc6/testrunner/DynamicWindow/SizeCBar.cpp @@ -47,7 +47,7 @@ // VC++ 6.0. // o And, of course, many thanks to all of you who used this code, // for the invaluable feedback I received. -// +// ///////////////////////////////////////////////////////////////////////// @@ -146,11 +146,11 @@ BOOL CSizingControlBar::Create(LPCTSTR lpszWindowName, CWnd* pParentWnd, ///////////////////////////////////////////////////////////////////////// // CSizingControlBar message handlers -int CSizingControlBar::OnCreate(LPCREATESTRUCT lpCreateStruct) +int CSizingControlBar::OnCreate(LPCREATESTRUCT lpCreateStruct) { if (baseCSizingControlBar::OnCreate(lpCreateStruct) == -1) return -1; - + // querry SPI_GETDRAGFULLWINDOWS system parameter // OnSettingChange() will update m_bDragShowContent m_bDragShowContent = FALSE; @@ -158,13 +158,13 @@ int CSizingControlBar::OnCreate(LPCREATESTRUCT lpCreateStruct) &m_bDragShowContent, 0); m_arrBars.Add(this); // register - + // m_dwSCBStyle |= SCBS_SHOWEDGES; return 0; } -BOOL CSizingControlBar::DestroyWindow() +BOOL CSizingControlBar::DestroyWindow() { int nPos = FindSizingBar(this); ASSERT(nPos >= 0); @@ -235,7 +235,7 @@ CSize CSizingControlBar::CalcFixedLayout(BOOL bStretch, BOOL bHorz) AlignControlBars(); m_bParentSizing = FALSE; - + CSize szRet = bHorz ? m_szHorz : m_szVert; szRet.cx = max(m_szMin.cx, szRet.cx); szRet.cy = max(m_szMin.cy, szRet.cy); @@ -283,7 +283,7 @@ void CSizingControlBar::OnWindowPosChanging(WINDOWPOS FAR* lpwndpos) ///////////////////////////////////////////////////////////////////////// // Mouse Handling // -void CSizingControlBar::OnLButtonDown(UINT nFlags, CPoint point) +void CSizingControlBar::OnLButtonDown(UINT nFlags, CPoint point) { if (m_pDockBar != NULL) { @@ -296,7 +296,7 @@ void CSizingControlBar::OnLButtonDown(UINT nFlags, CPoint point) CWnd::OnLButtonDown(nFlags, point); } -void CSizingControlBar::OnLButtonDblClk(UINT nFlags, CPoint point) +void CSizingControlBar::OnLButtonDblClk(UINT nFlags, CPoint point) { if (m_pDockBar != NULL) { @@ -308,7 +308,7 @@ void CSizingControlBar::OnLButtonDblClk(UINT nFlags, CPoint point) CWnd::OnLButtonDblClk(nFlags, point); } -void CSizingControlBar::OnNcLButtonDown(UINT nHitTest, CPoint point) +void CSizingControlBar::OnNcLButtonDown(UINT nHitTest, CPoint point) { if (IsFloating()) { @@ -322,7 +322,7 @@ void CSizingControlBar::OnNcLButtonDown(UINT nHitTest, CPoint point) StartTracking(nHitTest); // sizing edge hit } -void CSizingControlBar::OnNcLButtonUp(UINT nHitTest, CPoint point) +void CSizingControlBar::OnNcLButtonUp(UINT nHitTest, CPoint point) { if (nHitTest == HTCLOSE) m_pDockSite->ShowControlBar(this, FALSE, FALSE); // hide @@ -330,7 +330,7 @@ void CSizingControlBar::OnNcLButtonUp(UINT nHitTest, CPoint point) baseCSizingControlBar::OnNcLButtonUp(nHitTest, point); } -void CSizingControlBar::OnLButtonUp(UINT nFlags, CPoint point) +void CSizingControlBar::OnLButtonUp(UINT nFlags, CPoint point) { if (m_bTracking) StopTracking(); @@ -338,23 +338,23 @@ void CSizingControlBar::OnLButtonUp(UINT nFlags, CPoint point) baseCSizingControlBar::OnLButtonUp(nFlags, point); } -void CSizingControlBar::OnRButtonDown(UINT nFlags, CPoint point) +void CSizingControlBar::OnRButtonDown(UINT nFlags, CPoint point) { if (m_bTracking) StopTracking(); - + baseCSizingControlBar::OnRButtonDown(nFlags, point); } -void CSizingControlBar::OnMouseMove(UINT nFlags, CPoint point) +void CSizingControlBar::OnMouseMove(UINT nFlags, CPoint point { if (m_bTracking) OnTrackUpdateSize(point); - + baseCSizingControlBar::OnMouseMove(nFlags, point); } -void CSizingControlBar::OnCaptureChanged(CWnd *pWnd) +void CSizingControlBar::OnCaptureChanged(CWnd *pWnd) { if (m_bTracking && (pWnd != this)) StopTracking(); @@ -363,9 +363,9 @@ void CSizingControlBar::OnCaptureChanged(CWnd *pWnd) } void CSizingControlBar::OnNcCalcSize(BOOL bCalcValidRects, - NCCALCSIZE_PARAMS FAR* lpncsp) + NCCALCSIZE_PARAMS FAR* lpncsp) { - // compute the the client area + // compute the client area CRect rcClient = lpncsp->rgrc[0]; rcClient.DeflateRect(5, 5); diff --git a/src/msvc6/testrunner/DynamicWindow/cdxCDynamicControlsManager.h b/src/msvc6/testrunner/DynamicWindow/cdxCDynamicControlsManager.h index c8bb3e9..8f4f871 100644 --- a/src/msvc6/testrunner/DynamicWindow/cdxCDynamicControlsManager.h +++ b/src/msvc6/testrunner/DynamicWindow/cdxCDynamicControlsManager.h @@ -16,7 +16,7 @@ typedef cdxCSizeIconCtrl cdxCSizeCtrl; // // cdxCDynamicControlsManager.h : header file // ----------------------------------------------------------------------- -// Author: Hans Bühler ([email protected]) +// Author: Hans Bühler ([email protected]) // codex design (http://www-pool.mathematik.hu-berlin.de/~codex // Version: 1.5 // Release: 5 (Mar 1999 to www.codeguru.com) @@ -78,7 +78,7 @@ typedef cdxCSizeIconCtrl cdxCSizeCtrl; * DoDestroyWindow() - by DestroyWindow(). * * See cdxCSizingDialog.h for an example. - * + * * NOTE: * Unfortunately, we cannot derive this class from CObject, because * those macros DECLARE_xxx are too lame to handle multipile derived @@ -389,7 +389,7 @@ public: /* * this function transforms a control's original position (rectOriginal) into - * its new rectangle by taking the the difference between the original window's + * its new rectangle by taking the difference between the original window's * size (szDelta). */ diff --git a/src/msvc6/testrunner/DynamicWindow/doc/cdxCDynamicWnd-DOC.html b/src/msvc6/testrunner/DynamicWindow/doc/cdxCDynamicWnd-DOC.html index 6b5798f..f9bd2bc 100644 --- a/src/msvc6/testrunner/DynamicWindow/doc/cdxCDynamicWnd-DOC.html +++ b/src/msvc6/testrunner/DynamicWindow/doc/cdxCDynamicWnd-DOC.html @@ -1,9 +1,7 @@ <html> <head> -<meta http-equiv="Content-Type" -content="text/html; charset=iso-8859-1"> -<meta name="GENERATOR" content="Microsoft FrontPage 4.0"> +<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title></title> <style type="text/css"> @@ -38,7 +36,7 @@ a:hover { color:#0000C0;text-decoration:underline; } <h2 align="center"><font color="#00000A">cdxCDynamicWnd and derived classes<br> -</font><font color="#00000A" size="2">by Hans Bühler : codex +</font><font color="#00000A" size="2">by Hans Bühler : codex design</font></h2> <h2 align="center"><font color="#00000A">documentation</font></h2> @@ -148,7 +146,7 @@ design</font></h2> <p>If you are not satisfied with my predefined modes, you can make your own:<br> The following overload takes two bytes for each direction: They defined how much percent of the change in width should be added to the left side of the - the child control (<i>x1</i>) and to the right side (<i>x2</i>) (equally for + child control (<i>x1</i>) and to the right side (<i>x2</i>) (equally for height changes):</p> <blockquote> <blockquote> @@ -287,7 +285,7 @@ design</font></h2> <blockquote> <p>The classes described in this document have been written by</p> <blockquote> - <p>Hans Bühler, codex design (w)1997 - 2000<br> + <p>Hans Bühler, codex design (w)1997 - 2000<br> <a href="mailto:[email protected]">[email protected]</a></p> </blockquote> <p>You are free to use and modify the code and the classes but I would like
_______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
