sw/inc/viewsh.hxx | 6 +++--- sw/source/core/inc/flyfrm.hxx | 10 +++++----- sw/source/ui/inc/HeaderFooterWin.hxx | 2 +- sw/source/ui/inc/PageBreakWin.hxx | 2 +- vcl/inc/svdata.hxx | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-)
New commits: commit 73cf6f327517d59cbb5de428fe4ff221c70e85a2 Author: Jan Holesovsky <[email protected]> Date: Tue Jul 17 14:23:29 2012 +0200 Doxygen needs ///< for inline comments, not only //<. Change-Id: Ib8db74de1f18342794713952470e26ba87bc75fe diff --git a/sw/inc/viewsh.hxx b/sw/inc/viewsh.hxx index 85b17a4..fb9682f 100644 --- a/sw/inc/viewsh.hxx +++ b/sw/inc/viewsh.hxx @@ -163,9 +163,9 @@ class SW_DLLPUBLIC ViewShell : public Ring // of scrollbars. sal_Bool bEndActionByVirDev:1; // Paints from EndAction always via virtual device // (e.g. when browsing). - bool bShowHeaderSeparator:1; //< Flag to say that we are showing the header control - bool bShowFooterSeparator:1; //< Flag to say that we are showing the footer control - bool bHeaderFooterEdit:1; //< Flag to say that we are editing header or footer (according to the bShow(Header|Footer)Separator above) + bool bShowHeaderSeparator:1; ///< Flag to say that we are showing the header control + bool bShowFooterSeparator:1; ///< Flag to say that we are showing the footer control + bool bHeaderFooterEdit:1; ///< Flag to say that we are editing header or footer (according to the bShow(Header|Footer)Separator above) // boolean, indicating that class in in constructor. bool mbInConstructor:1; diff --git a/sw/source/core/inc/flyfrm.hxx b/sw/source/core/inc/flyfrm.hxx index 3793cdb..5373eb3 100644 --- a/sw/source/core/inc/flyfrm.hxx +++ b/sw/source/core/inc/flyfrm.hxx @@ -115,12 +115,12 @@ protected: // but the width will not be re-evaluated based on the attributes. sal_Bool bFormatHeightOnly :1; - sal_Bool bInCnt :1; //< FLY_AS_CHAR, anchored as character - sal_Bool bAtCnt :1; //< FLY_AT_PARA, anchored at paragraph - sal_Bool bLayout :1; //< FLY_AT_PAGE, FLY_AT_FLY, at page or at frame - sal_Bool bAutoPosition :1; //< FLY_AT_CHAR, anchored at character + sal_Bool bInCnt :1; ///< FLY_AS_CHAR, anchored as character + sal_Bool bAtCnt :1; ///< FLY_AT_PARA, anchored at paragraph + sal_Bool bLayout :1; ///< FLY_AT_PAGE, FLY_AT_FLY, at page or at frame + sal_Bool bAutoPosition :1; ///< FLY_AT_CHAR, anchored at character - sal_Bool bNoShrink :1; //< temporary forbid shrinking to avoid loops + sal_Bool bNoShrink :1; ///< temporary forbid shrinking to avoid loops // If sal_True, the content of the fly frame will not be deleted when it // is moved to an invisible layer. sal_Bool bLockDeleteContent :1; diff --git a/sw/source/ui/inc/HeaderFooterWin.hxx b/sw/source/ui/inc/HeaderFooterWin.hxx index d6c250d..966074e 100644 --- a/sw/source/ui/inc/HeaderFooterWin.hxx +++ b/sw/source/ui/inc/HeaderFooterWin.hxx @@ -45,7 +45,7 @@ class SwHeaderFooterWin : public MenuButton, public SwFrameControl Window* m_pLine; bool m_bIsAppearing; int m_nFadeRate; - int m_nDelayAppearing; //< Before we show the control, let it transparent for a few timer ticks to avoid appearing with every mouse over. + int m_nDelayAppearing; ///< Before we show the control, let it transparent for a few timer ticks to avoid appearing with every mouse over. Timer m_aFadeTimer; public: diff --git a/sw/source/ui/inc/PageBreakWin.hxx b/sw/source/ui/inc/PageBreakWin.hxx index 63eef5a..c993d9d 100644 --- a/sw/source/ui/inc/PageBreakWin.hxx +++ b/sw/source/ui/inc/PageBreakWin.hxx @@ -45,7 +45,7 @@ class SwPageBreakWin : public MenuButton, public SwFrameControl Window* m_pLine; bool m_bIsAppearing; int m_nFadeRate; - int m_nDelayAppearing; //< Before we show the control, let it transparent for a few timer ticks to avoid appearing with every mouse over. + int m_nDelayAppearing; ///< Before we show the control, let it transparent for a few timer ticks to avoid appearing with every mouse over. Timer m_aFadeTimer; bool m_bDestroyed; diff --git a/vcl/inc/svdata.hxx b/vcl/inc/svdata.hxx index c0b8226..7af3132 100644 --- a/vcl/inc/svdata.hxx +++ b/vcl/inc/svdata.hxx @@ -301,7 +301,7 @@ struct ImplSVNWFData bool mbMenuBarDockingAreaCommonBG:1; // e.g. WinXP default theme bool mbDockingAreaSeparateTB:1; // individual toolbar backgrounds // instead of one for docking area - bool mbDockingAreaAvoidTBFrames:1; //< don't draw frames around the individual toolbars if mbDockingAreaSeparateTB is false + bool mbDockingAreaAvoidTBFrames:1; ///< don't draw frames around the individual toolbars if mbDockingAreaSeparateTB is false bool mbToolboxDropDownSeparate:1; // two adjacent buttons for // toolbox dropdown buttons bool mbFlatMenu:1; // no popup 3D border _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
