summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-07 07:56:44 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-07 07:57:12 +0200
commitb9792cb9553abb11cc3c7fb6c68a88f716b07b57 (patch)
treecf303ed27b5bd7cadd0281254bf2decf0fccd16f /sw
parent449907b707ebcc45642dd7890f6dfd6923bfc285 (diff)
Avoid reserved identifiers
Change-Id: I63ab4de02702c6f74caa3a65f7d297e2a95a65cd
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/unocore/unodraw.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/unocore/unodraw.cxx b/sw/source/core/unocore/unodraw.cxx
index 0d3d94926228..fa52bebce2bc 100644
--- a/sw/source/core/unocore/unodraw.cxx
+++ b/sw/source/core/unocore/unodraw.cxx
@@ -251,7 +251,7 @@ SwFmDrawPage::~SwFmDrawPage() throw ()
const SdrMarkList& SwFmDrawPage::PreGroup(const uno::Reference< drawing::XShapes > & xShapes)
{
- _SelectObjectsInView( xShapes, GetPageView() );
+ SelectObjectsInView( xShapes, GetPageView() );
const SdrMarkList& rMarkList = mpView->GetMarkedObjectList();
return rMarkList;
}
@@ -259,7 +259,7 @@ const SdrMarkList& SwFmDrawPage::PreGroup(const uno::Reference< drawing::XShape
void SwFmDrawPage::PreUnGroup(const uno::Reference< drawing::XShapeGroup >& rShapeGroup)
{
uno::Reference< drawing::XShape > xShape( rShapeGroup, uno::UNO_QUERY);
- _SelectObjectInView( xShape, GetPageView() );
+ SelectObjectInView( xShape, GetPageView() );
}
SdrPageView* SwFmDrawPage::GetPageView()