summaryrefslogtreecommitdiff
path: root/sw/source/ui/uiview/view0.cxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@suse.cz>2013-03-23 16:14:56 +0100
committerMiklos Vajna <vmiklos@suse.cz>2013-03-23 16:15:55 +0100
commitd4ebfc7e3fc8996dc0f52fcf228ba37a6af0f499 (patch)
tree77acc22bd6b6fe6dceda0dea6ee9f78fcd3d1cde /sw/source/ui/uiview/view0.cxx
parent015131c87e14f84040cfa579bc81419714cbe964 (diff)
SwView: rename member variables missing their prefix
Change-Id: Ib382d3e3bab87b2e1dd32060da977289e4dc601e
Diffstat (limited to 'sw/source/ui/uiview/view0.cxx')
-rw-r--r--sw/source/ui/uiview/view0.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sw/source/ui/uiview/view0.cxx b/sw/source/ui/uiview/view0.cxx
index fd2e384f09e6..596ef1f033ca 100644
--- a/sw/source/ui/uiview/view0.cxx
+++ b/sw/source/ui/uiview/view0.cxx
@@ -121,43 +121,43 @@ TYPEINIT1(SwView,SfxViewShell)
ShellModes SwView::GetShellMode()
{
- return pViewImpl->GetShellMode();
+ return m_pViewImpl->GetShellMode();
}
view::XSelectionSupplier* SwView::GetUNOObject()
{
- return pViewImpl->GetUNOObject();
+ return m_pViewImpl->GetUNOObject();
}
void SwView::ApplyAccessiblityOptions(SvtAccessibilityOptions& rAccessibilityOptions)
{
- pWrtShell->ApplyAccessiblityOptions(rAccessibilityOptions);
+ m_pWrtShell->ApplyAccessiblityOptions(rAccessibilityOptions);
//to enable the right state of the selection cursor in readonly documents
if(GetDocShell()->IsReadOnly())
- pWrtShell->ShowCrsr();
+ m_pWrtShell->ShowCrsr();
}
void SwView::SetMailMergeConfigItem(SwMailMergeConfigItem* pConfigItem,
sal_uInt16 nRestart, sal_Bool bIsSource)
{
- pViewImpl->SetMailMergeConfigItem(pConfigItem, nRestart, bIsSource);
+ m_pViewImpl->SetMailMergeConfigItem(pConfigItem, nRestart, bIsSource);
UIFeatureChanged();
}
SwMailMergeConfigItem* SwView::GetMailMergeConfigItem()
{
- return pViewImpl->GetMailMergeConfigItem();
+ return m_pViewImpl->GetMailMergeConfigItem();
}
sal_uInt16 SwView::GetMailMergeRestartPage() const
{
- return pViewImpl->GetMailMergeRestartPage();
+ return m_pViewImpl->GetMailMergeRestartPage();
}
sal_Bool SwView::IsMailMergeSourceView() const
{
- return pViewImpl->IsMailMergeSourceView();
+ return m_pViewImpl->IsMailMergeSourceView();
}
static sal_Bool lcl_IsViewMarks( const SwViewOption& rVOpt )