summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2019-09-08 13:10:33 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-09-09 15:34:19 +0200
commitb32ac08a12380228202c396fba36d8ecd85252da (patch)
treec73dddbad0bb16b4a656710c157c66754e2f769c /include
parent4a7f259f2117ff812f2d1c5fc572a14d58af1142 (diff)
sd: prefix members of SdrPowerPointImport
Change-Id: Ia758c5c5bb0c448a5e051557c3ae48e8349c0c92 Reviewed-on: https://gerrit.libreoffice.org/78762 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'include')
-rw-r--r--include/filter/msfilter/svdfppt.hxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/include/filter/msfilter/svdfppt.hxx b/include/filter/msfilter/svdfppt.hxx
index 7252edf58dcb..070aecae01ce 100644
--- a/include/filter/msfilter/svdfppt.hxx
+++ b/include/filter/msfilter/svdfppt.hxx
@@ -555,25 +555,25 @@ protected:
friend struct PPTStyleSheet;
friend class PPTNumberFormatCreator;
- bool bOk;
- PptUserEditAtom aUserEditAtom;
- PptColorSchemeAtom aPageColors;
- ::std::vector< SdHyperlinkEntry > aHyperList;
+ bool m_bOk;
+ PptUserEditAtom m_aUserEditAtom;
+ PptColorSchemeAtom m_aPageColors;
+ ::std::vector< SdHyperlinkEntry > m_aHyperList;
std::unique_ptr<sal_uInt32[]>
- pPersistPtr;
- sal_uInt32 nPersistPtrCnt;
+ m_pPersistPtr;
+ sal_uInt32 m_nPersistPtrCnt;
- const PPTStyleSheet* pPPTStyleSheet; // this is the current stylesheet;
- const PPTStyleSheet* pDefaultSheet; // this is a sheet we are using if no masterpage can be found, but that should
+ const PPTStyleSheet* m_pPPTStyleSheet; // this is the current stylesheet;
+ const PPTStyleSheet* m_pDefaultSheet; // this is a sheet we are using if no masterpage can be found, but that should
// never happen just preventing a crash
std::unique_ptr<PptSlidePersistList> m_pMasterPages;
std::unique_ptr<PptSlidePersistList> m_pSlidePages;
std::unique_ptr<PptSlidePersistList> m_pNotePages;
- sal_uInt16 nCurrentPageNum;
- sal_uLong nDocStreamPos;
- sal_uInt16 nPageColorsNum;
- PptPageKind ePageColorsKind;
- PptPageKind eCurrentPageKind;
+ sal_uInt16 m_nCurrentPageNum;
+ sal_uLong m_nDocStreamPos;
+ sal_uInt16 m_nPageColorsNum;
+ PptPageKind m_ePageColorsKind;
+ PptPageKind m_eCurrentPageKind;
protected:
using SdrEscherImport::ReadObjText;