From 3ce229678a338b06f6d826a4c79cb80d79b51956 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Tue, 12 Sep 2017 12:35:04 +0300 Subject: Prefix one more member of ScDocument: pDrawLayer Change-Id: I8b2fdca8a58db6c6633d7708ed42ca218799c53b --- sc/inc/document.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sc/inc') diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx index c9a68c40a74e..d9c7a42970ae 100644 --- a/sc/inc/document.hxx +++ b/sc/inc/document.hxx @@ -323,7 +323,7 @@ private: SfxObjectShell* mpShell; VclPtr mpPrinter; VclPtr mpVirtualDevice_100th_mm; - ScDrawLayer* pDrawLayer; // SdrModel + ScDrawLayer* mpDrawLayer; // SdrModel rtl::Reference pColorList; ScValidationDataList* pValidationList; // validity SvNumberFormatterIndexTable* pFormatExchangeList; // for application of number formats @@ -933,8 +933,8 @@ public: SfxBindings* GetViewBindings(); SfxObjectShell* GetDocumentShell() const { return mpShell; } - SC_DLLPUBLIC ScDrawLayer* GetDrawLayer() { return pDrawLayer; } - SC_DLLPUBLIC const ScDrawLayer* GetDrawLayer() const { return pDrawLayer; } + SC_DLLPUBLIC ScDrawLayer* GetDrawLayer() { return mpDrawLayer; } + SC_DLLPUBLIC const ScDrawLayer* GetDrawLayer() const { return mpDrawLayer; } SfxBroadcaster* GetDrawBroadcaster(); // to avoid header void BeginDrawUndo(); -- cgit