diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-15 15:23:08 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-18 15:30:07 +0200 |
commit | ea83bf52953baa9b09771271e453a5f9a6c5280d (patch) | |
tree | b4dd61920aa82fcfc967c6049686fd1393697782 /include/svx | |
parent | d9adda92cc6328cd44bf09753caefe23b028a81b (diff) |
Avoid reserved identifier (_CreateSdrObject -> CreateSdrObject_)
Change-Id: Iee63999e4953a083783cb5c9811640150616472d
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/fmdpage.hxx | 2 | ||||
-rw-r--r-- | include/svx/unopage.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/fmdpage.hxx b/include/svx/fmdpage.hxx index 189d5b31257f..027d21878e19 100644 --- a/include/svx/fmdpage.hxx +++ b/include/svx/fmdpage.hxx @@ -34,7 +34,7 @@ protected: // Creating a SdrObject based on a Description. Cann be used by derived classes to // support own css::drawing::Shapes (for example Controls) - virtual SdrObject *_CreateSdrObject( const css::uno::Reference< css::drawing::XShape > & xShape ) + virtual SdrObject *CreateSdrObject_( const css::uno::Reference< css::drawing::XShape > & xShape ) throw (css::uno::RuntimeException, std::exception) override; // The following method is called when a SvxShape object should be created. diff --git a/include/svx/unopage.hxx b/include/svx/unopage.hxx index 34643638f2cc..831a6d6e517f 100644 --- a/include/svx/unopage.hxx +++ b/include/svx/unopage.hxx @@ -93,7 +93,7 @@ class SVX_DLLPUBLIC SvxDrawPage : public ::cppu::WeakAggImplHelper6< css::drawin // Creating a SdrObject using it's Description. // Can be used by derived classes to support their owen Shapes (e.g. Controls). - virtual SdrObject *_CreateSdrObject( const css::uno::Reference< css::drawing::XShape >& xShape ) + virtual SdrObject *CreateSdrObject_( const css::uno::Reference< css::drawing::XShape >& xShape ) throw (css::uno::RuntimeException, std::exception); static SvxShape* CreateShapeByTypeAndInventor( sal_uInt16 nType, sal_uInt32 nInventor, SdrObject *pObj = nullptr, SvxDrawPage *pPage = nullptr, OUString const & referer = OUString() ) throw (css::uno::RuntimeException); |