diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-06 07:42:13 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-15 08:13:06 +0100 |
commit | 158fbb78cad97787e193cf95832fe26da69e4403 (patch) | |
tree | 63ce489df745629a119ad4142364bccd5cf8670c /chart2 | |
parent | 3c825bcc483d24bc408f7438d966c79a1f5b084c (diff) |
make some classes module-private
Change-Id: I95845d7217fc5e77e3f8e205030e9cd761ad0cc5
Reviewed-on: https://gerrit.libreoffice.org/82116
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/inc/ControllerLockGuard.hxx | 2 | ||||
-rw-r--r-- | chart2/source/inc/ExplicitCategoriesProvider.hxx | 2 | ||||
-rw-r--r-- | chart2/source/inc/FormattedStringHelper.hxx | 2 | ||||
-rw-r--r-- | chart2/source/inc/LifeTime.hxx | 18 | ||||
-rw-r--r-- | chart2/source/inc/ModifyListenerHelper.hxx | 2 | ||||
-rw-r--r-- | chart2/source/inc/NumberFormatterWrapper.hxx | 2 | ||||
-rw-r--r-- | chart2/source/inc/TrueGuard.hxx | 2 | ||||
-rw-r--r-- | chart2/source/inc/chartview/ExplicitScaleValues.hxx | 2 | ||||
-rw-r--r-- | chart2/source/view/inc/PropertyMapper.hxx | 2 |
9 files changed, 17 insertions, 17 deletions
diff --git a/chart2/source/inc/ControllerLockGuard.hxx b/chart2/source/inc/ControllerLockGuard.hxx index f1e33434079d..d6b611da31f5 100644 --- a/chart2/source/inc/ControllerLockGuard.hxx +++ b/chart2/source/inc/ControllerLockGuard.hxx @@ -42,7 +42,7 @@ private: css::uno::Reference< css::frame::XModel > mxModel; }; -class OOO_DLLPUBLIC_CHARTTOOLS ControllerLockGuard +class ControllerLockGuard { public: explicit ControllerLockGuard( ChartModel& rModel ); diff --git a/chart2/source/inc/ExplicitCategoriesProvider.hxx b/chart2/source/inc/ExplicitCategoriesProvider.hxx index 9e6cfa35a430..085f348b61d4 100644 --- a/chart2/source/inc/ExplicitCategoriesProvider.hxx +++ b/chart2/source/inc/ExplicitCategoriesProvider.hxx @@ -44,7 +44,7 @@ struct OOO_DLLPUBLIC_CHARTTOOLS ComplexCategory {} }; -class OOO_DLLPUBLIC_CHARTTOOLS SplitCategoriesProvider +class SplitCategoriesProvider { public: virtual ~SplitCategoriesProvider(); diff --git a/chart2/source/inc/FormattedStringHelper.hxx b/chart2/source/inc/FormattedStringHelper.hxx index 412e24c333cf..e20f00a1692d 100644 --- a/chart2/source/inc/FormattedStringHelper.hxx +++ b/chart2/source/inc/FormattedStringHelper.hxx @@ -30,7 +30,7 @@ namespace com { namespace sun { namespace star { namespace uno { template <class namespace chart { -class OOO_DLLPUBLIC_CHARTTOOLS FormattedStringHelper +class FormattedStringHelper { public: static css::uno::Sequence< diff --git a/chart2/source/inc/LifeTime.hxx b/chart2/source/inc/LifeTime.hxx index 73d2b70cbbab..755227d30a9d 100644 --- a/chart2/source/inc/LifeTime.hxx +++ b/chart2/source/inc/LifeTime.hxx @@ -81,19 +81,19 @@ class CloseableLifeTimeManager final : public LifeTimeManager bool volatile m_bOwnership; public: -OOO_DLLPUBLIC_CHARTTOOLS CloseableLifeTimeManager( css::util::XCloseable* pCloseable + CloseableLifeTimeManager( css::util::XCloseable* pCloseable , css::lang::XComponent* pComponent ); -OOO_DLLPUBLIC_CHARTTOOLS virtual ~CloseableLifeTimeManager() override; + virtual ~CloseableLifeTimeManager() override; -OOO_DLLPUBLIC_CHARTTOOLS bool impl_isDisposedOrClosed( bool bAssert=true ); + bool impl_isDisposedOrClosed( bool bAssert=true ); /// @throws css::uno::Exception -OOO_DLLPUBLIC_CHARTTOOLS bool g_close_startTryClose(bool bDeliverOwnership); + bool g_close_startTryClose(bool bDeliverOwnership); /// @throws css::util::CloseVetoException -OOO_DLLPUBLIC_CHARTTOOLS void g_close_isNeedToCancelLongLastingCalls( bool bDeliverOwnership, css::util::CloseVetoException const & ex ); -OOO_DLLPUBLIC_CHARTTOOLS void g_close_endTryClose(bool bDeliverOwnership ); -OOO_DLLPUBLIC_CHARTTOOLS void g_close_endTryClose_doClose(); + void g_close_isNeedToCancelLongLastingCalls( bool bDeliverOwnership, css::util::CloseVetoException const & ex ); + void g_close_endTryClose(bool bDeliverOwnership ); + void g_close_endTryClose_doClose(); /// @throws css::uno::RuntimeException -OOO_DLLPUBLIC_CHARTTOOLS void g_addCloseListener( const css::uno::Reference< css::util::XCloseListener > & xListener ); + void g_addCloseListener( const css::uno::Reference< css::util::XCloseListener > & xListener ); private: virtual bool impl_canStartApiCall() override; @@ -165,7 +165,7 @@ your XComponent::dispose method has to be implemented in the following way: */ -class OOO_DLLPUBLIC_CHARTTOOLS LifeTimeGuard +class LifeTimeGuard { public: diff --git a/chart2/source/inc/ModifyListenerHelper.hxx b/chart2/source/inc/ModifyListenerHelper.hxx index 48de142db752..4083edad9bc6 100644 --- a/chart2/source/inc/ModifyListenerHelper.hxx +++ b/chart2/source/inc/ModifyListenerHelper.hxx @@ -38,7 +38,7 @@ namespace chart namespace ModifyListenerHelper { -OOO_DLLPUBLIC_CHARTTOOLS css::uno::Reference< css::util::XModifyListener > createModifyEventForwarder(); +css::uno::Reference< css::util::XModifyListener > createModifyEventForwarder(); /** This helper class serves as forwarder of modify events. It can be used whenever an object has to send modify events after it gets a modify event of diff --git a/chart2/source/inc/NumberFormatterWrapper.hxx b/chart2/source/inc/NumberFormatterWrapper.hxx index 7170d96966e9..828ef6a3cc4d 100644 --- a/chart2/source/inc/NumberFormatterWrapper.hxx +++ b/chart2/source/inc/NumberFormatterWrapper.hxx @@ -51,7 +51,7 @@ private: //private member css::uno::Any m_aNullDate; }; -class OOO_DLLPUBLIC_CHARTTOOLS FixedNumberFormatter final +class FixedNumberFormatter final { public: FixedNumberFormatter( const css::uno::Reference< css::util::XNumberFormatsSupplier >& xSupplier diff --git a/chart2/source/inc/TrueGuard.hxx b/chart2/source/inc/TrueGuard.hxx index 36121f309aca..38671d3a441f 100644 --- a/chart2/source/inc/TrueGuard.hxx +++ b/chart2/source/inc/TrueGuard.hxx @@ -25,7 +25,7 @@ namespace chart { /** This guard sets the given boolean reference to true in the constructor and to false in the destructor */ -class OOO_DLLPUBLIC_CHARTTOOLS TrueGuard final +class TrueGuard final { public: explicit TrueGuard( bool& rbTrueDuringGuardedTime ); diff --git a/chart2/source/inc/chartview/ExplicitScaleValues.hxx b/chart2/source/inc/chartview/ExplicitScaleValues.hxx index e56d64d21dce..6e1f093025f4 100644 --- a/chart2/source/inc/chartview/ExplicitScaleValues.hxx +++ b/chart2/source/inc/chartview/ExplicitScaleValues.hxx @@ -52,7 +52,7 @@ struct OOO_DLLPUBLIC_CHARTVIEW ExplicitScaleData Date NullDate; }; -struct OOO_DLLPUBLIC_CHARTVIEW ExplicitSubIncrement +struct ExplicitSubIncrement { ExplicitSubIncrement(); diff --git a/chart2/source/view/inc/PropertyMapper.hxx b/chart2/source/view/inc/PropertyMapper.hxx index 94b3a1c6b60b..2066d0a1b835 100644 --- a/chart2/source/view/inc/PropertyMapper.hxx +++ b/chart2/source/view/inc/PropertyMapper.hxx @@ -44,7 +44,7 @@ typedef css::uno::Sequence< css::uno::Any > tAnySequence; * shape objects (those whose service names begin with * com.sun.star.drawing.). */ -class OOO_DLLPUBLIC_CHARTTOOLS PropertyMapper +class PropertyMapper { public: static void setMappedProperties( |