summaryrefslogtreecommitdiff
path: root/svx
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 /svx
parent449907b707ebcc45642dd7890f6dfd6923bfc285 (diff)
Avoid reserved identifiers
Change-Id: I63ab4de02702c6f74caa3a65f7d297e2a95a65cd
Diffstat (limited to 'svx')
-rw-r--r--svx/source/unodraw/unopage.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/unodraw/unopage.cxx b/svx/source/unodraw/unopage.cxx
index 6fbab3e9b2e2..cdc5c17a7b4e 100644
--- a/svx/source/unodraw/unopage.cxx
+++ b/svx/source/unodraw/unopage.cxx
@@ -390,9 +390,9 @@ namespace
}
}
-// ATTENTION: _SelectObjectsInView selects the css::drawing::Shapes
+// ATTENTION: SelectObjectsInView selects the css::drawing::Shapes
// only in the given SdrPageView. It hasn't to be the visible SdrPageView.
-void SvxDrawPage::_SelectObjectsInView( const Reference< drawing::XShapes > & aShapes, SdrPageView* pPageView ) throw ()
+void SvxDrawPage::SelectObjectsInView( const Reference< drawing::XShapes > & aShapes, SdrPageView* pPageView ) throw ()
{
SAL_WARN_IF(!pPageView, "svx", "SdrPageView is NULL!");
SAL_WARN_IF(!mpView, "svx", "SdrView is NULL!");
@@ -412,9 +412,9 @@ void SvxDrawPage::_SelectObjectsInView( const Reference< drawing::XShapes > & aS
}
}
-// ATTENTION: _SelectObjectInView selects the shape only in the given SdrPageView.
+// ATTENTION: SelectObjectInView selects the shape only in the given SdrPageView.
// It hasn't to be the visible SdrPageView.
-void SvxDrawPage::_SelectObjectInView( const Reference< drawing::XShape > & xShape, SdrPageView* pPageView ) throw()
+void SvxDrawPage::SelectObjectInView( const Reference< drawing::XShape > & xShape, SdrPageView* pPageView ) throw()
{
SAL_WARN_IF(!pPageView, "svx", "SdrPageView is NULL!");
SAL_WARN_IF(!mpView, "svx", "SdrView is NULL!");
@@ -443,7 +443,7 @@ Reference< drawing::XShapeGroup > SAL_CALL SvxDrawPage::group( const Reference<
SdrPageView* pPageView = mpView->ShowSdrPage( mpPage );
- _SelectObjectsInView( xShapes, pPageView );
+ SelectObjectsInView( xShapes, pPageView );
mpView->GroupMarked();
@@ -481,7 +481,7 @@ void SAL_CALL SvxDrawPage::ungroup( const Reference< drawing::XShapeGroup >& aGr
SdrPageView* pPageView = mpView->ShowSdrPage( mpPage );
Reference< drawing::XShape > xShape( aGroup, UNO_QUERY );
- _SelectObjectInView( xShape, pPageView );
+ SelectObjectInView( xShape, pPageView );
mpView->UnGroupMarked();
mpView->HideSdrPage();