diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-09-27 10:47:47 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-09-27 10:47:47 +0000 |
commit | 319ebc26d15573ca5a9636edabe0d49c20ddab32 (patch) | |
tree | c3501fb0229c63adc85dec2de4e546170e26851b /sw/source | |
parent | f035a01d9afef07d5fe31795f528d6d708c18f08 (diff) |
INTEGRATION: CWS swwarnings (1.5.536); FILE MERGED
2007/03/26 12:09:03 tl 1.5.536.3: #i69287# warning-free code
2007/03/05 12:45:42 tl 1.5.536.2: #i69287# warning-free code
2007/02/22 15:06:44 tl 1.5.536.1: #i69287# warning-free code
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/ui/fldui/fldpage.hxx | 53 |
1 files changed, 27 insertions, 26 deletions
diff --git a/sw/source/ui/fldui/fldpage.hxx b/sw/source/ui/fldui/fldpage.hxx index 8072d6631cd4..658834e86028 100644 --- a/sw/source/ui/fldui/fldpage.hxx +++ b/sw/source/ui/fldui/fldpage.hxx @@ -4,9 +4,9 @@ * * $RCSfile: fldpage.hxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: kz $ $Date: 2006-01-31 18:35:57 $ + * last change: $Author: hr $ $Date: 2007-09-27 11:47:47 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -43,6 +43,7 @@ #include <fldmgr.hxx> #endif +class ListBox; /*-------------------------------------------------------------------- Beschreibung: @@ -52,30 +53,29 @@ const int coLBCount = 3; class SwFldPage : public SfxTabPage { - String aLstStrArr[ coLBCount ]; - SwFldMgr aMgr; - SwField *pCurFld; - SwWrtShell* pWrtShell; - USHORT nFldDlgAktGrpSel; - USHORT nPageId; - USHORT nTypeSel; - USHORT nSelectionSel; - BOOL bFldEdit; - BOOL bInsert; - BOOL bFldDlgHtmlMode; - BOOL bRefresh; - BOOL bFirstHTMLInit; + String m_aLstStrArr[ coLBCount ]; + SwFldMgr m_aMgr; + SwField *m_pCurFld; + SwWrtShell* m_pWrtShell; + USHORT m_nPageId; + USHORT m_nTypeSel; + USHORT m_nSelectionSel; + BOOL m_bFldEdit; + BOOL m_bInsert; + BOOL m_bFldDlgHtmlMode; + BOOL m_bRefresh; + BOOL m_bFirstHTMLInit; protected: - USHORT GetTypeSel() const { return nTypeSel;} - void SetTypeSel(USHORT nSet) { nTypeSel = nSet;} - USHORT GetSelectionSel() const { return nSelectionSel;} - void SetSelectionSel(USHORT nSet){ nSelectionSel = nSet;} - BOOL IsFldDlgHtmlMode() const { return bFldDlgHtmlMode;} - BOOL IsRefresh() const { return bRefresh;} - SwField* GetCurField() { return pCurFld;} - SwWrtShell* GetWrtShell() { return pWrtShell;} + USHORT GetTypeSel() const { return m_nTypeSel;} + void SetTypeSel(USHORT nSet) { m_nTypeSel = nSet;} + USHORT GetSelectionSel() const { return m_nSelectionSel;} + void SetSelectionSel(USHORT nSet){ m_nSelectionSel = nSet;} + BOOL IsFldDlgHtmlMode() const { return m_bFldDlgHtmlMode;} + BOOL IsRefresh() const { return m_bRefresh;} + SwField* GetCurField() { return m_pCurFld;} + SwWrtShell* GetWrtShell() { return m_pWrtShell;} DECL_LINK( InsertHdl, Button *pBtn = 0 ); DECL_LINK( NumFormatHdl, ListBox *pBtn = 0 ); @@ -87,7 +87,7 @@ protected: void RestorePos( ListBox* pLst1, ListBox* pLst2 = 0, ListBox* pLst3 = 0 ); void EnableInsert(BOOL bEnable = TRUE); - inline BOOL IsFldEdit() const { return bFldEdit; } + inline BOOL IsFldEdit() const { return m_bFldEdit; } // Feld einfuegen BOOL InsertFld( USHORT nTypeId, @@ -105,10 +105,11 @@ public: virtual ~SwFldPage(); + using SfxTabPage::ActivatePage; virtual void ActivatePage(); - inline SwFldMgr& GetFldMgr() { return aMgr; } - void SetWrtShell( SwWrtShell* pWrtShell ); + inline SwFldMgr& GetFldMgr() { return m_aMgr; } + void SetWrtShell( SwWrtShell* m_pWrtShell ); void EditNewField( BOOL bOnlyActivate = FALSE ); virtual USHORT GetGroup() = 0; }; |