diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-04-12 10:18:13 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-04-12 13:47:18 +0200 |
commit | 00a9b9bcd12bacafa2d81a11233b9c88669da6f1 (patch) | |
tree | 592900929abe9df5869cacdbbec99795d73c7683 /sd | |
parent | 669c7505358e0362d8829a79994946239c2cc7ce (diff) |
rename intern->internal
where appropriate
Change-Id: I440d277e7be242eeecb7767fa11d1c4dad937e65
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150268
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/inc/unomodel.hxx | 4 | ||||
-rw-r--r-- | sd/source/ui/inc/unopage.hxx | 4 | ||||
-rw-r--r-- | sd/source/ui/unoidl/unocpres.hxx | 2 | ||||
-rw-r--r-- | sd/source/ui/unoidl/unolayer.hxx | 2 | ||||
-rw-r--r-- | sd/source/ui/unoidl/unopage.cxx | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/sd/source/ui/inc/unomodel.hxx b/sd/source/ui/inc/unomodel.hxx index 98d5c4473f9b..ba2602b86e60 100644 --- a/sd/source/ui/inc/unomodel.hxx +++ b/sd/source/ui/inc/unomodel.hxx @@ -133,7 +133,7 @@ public: static rtl::Reference< SdXImpressDocument > GetModel( SdDrawDocument const & rDoc ); - // intern + // internal bool operator==( const SdXImpressDocument& rModel ) const { return mpDoc == rModel.mpDoc; } bool operator!=( const SdXImpressDocument& rModel ) const { return mpDoc != rModel.mpDoc; } @@ -406,7 +406,7 @@ public: virtual void SAL_CALL addEventListener( const css::uno::Reference< css::lang::XEventListener >& xListener ) override; virtual void SAL_CALL removeEventListener( const css::uno::Reference< css::lang::XEventListener >& aListener ) override; - // intern + // internal /// @throws std::exception SdPage* FindPage( std::u16string_view rName ) const; }; diff --git a/sd/source/ui/inc/unopage.hxx b/sd/source/ui/inc/unopage.hxx index b6a6f0d6d9b6..9a684b2cb496 100644 --- a/sd/source/ui/inc/unopage.hxx +++ b/sd/source/ui/inc/unopage.hxx @@ -93,7 +93,7 @@ public: SdGenericDrawPage(SdXImpressDocument* pModel, SdPage* pInPage, const SvxItemPropertySet* pSet); virtual ~SdGenericDrawPage() noexcept override; - // intern + // internal bool isValid() const { return (SvxDrawPage::mpPage != nullptr) && (mpModel != nullptr); } SdPage* GetPage() const { return static_cast<SdPage*>(SvxDrawPage::mpPage); } @@ -286,7 +286,7 @@ public: SdPageLinkTargets( SdGenericDrawPage* pUnoPage ) noexcept; virtual ~SdPageLinkTargets() noexcept override; - // intern + // internal SdrObject* FindObject( std::u16string_view rName ) const noexcept; // XServiceInfo diff --git a/sd/source/ui/unoidl/unocpres.hxx b/sd/source/ui/unoidl/unocpres.hxx index e74dbe0e4436..f1630d461bdd 100644 --- a/sd/source/ui/unoidl/unocpres.hxx +++ b/sd/source/ui/unoidl/unocpres.hxx @@ -97,7 +97,7 @@ class SdXCustomPresentationAccess : public ::cppu::WeakImplHelper< css::containe private: SdXImpressDocument& mrModel; - // intern + // internal inline SdCustomShowList* GetCustomShowList() const noexcept; SdCustomShow * getSdCustomShow( std::u16string_view Name ) const noexcept; diff --git a/sd/source/ui/unoidl/unolayer.hxx b/sd/source/ui/unoidl/unolayer.hxx index fe343bba438b..42f9b868341f 100644 --- a/sd/source/ui/unoidl/unolayer.hxx +++ b/sd/source/ui/unoidl/unolayer.hxx @@ -48,7 +48,7 @@ public: SdLayer(SdLayerManager* pLayerManager_, SdrLayer* pSdrLayer_); virtual ~SdLayer() noexcept override; - // intern + // internal SdrLayer* GetSdrLayer() const noexcept { return pLayer; } // XServiceInfo diff --git a/sd/source/ui/unoidl/unopage.cxx b/sd/source/ui/unoidl/unopage.cxx index 87508052da87..6ff2958f85b9 100644 --- a/sd/source/ui/unoidl/unopage.cxx +++ b/sd/source/ui/unoidl/unopage.cxx @@ -2815,7 +2815,7 @@ Any SAL_CALL SdMasterPage::getByIndex( sal_Int32 Index ) return SdGenericDrawPage::getByIndex(Index); } -// intern +// internal void SdMasterPage::setBackground( const Any& rValue ) { // we need at least a beans::XPropertySet |