From c3e1743287c5c8b968eb9f45975b44f6adb65ea4 Mon Sep 17 00:00:00 2001 From: Deepanshu Sharma <129deepanshusharma@gmail.com> Date: Thu, 13 Mar 2025 15:08:47 +0530 Subject: tdf#48140 Replace XDatabaseRange with ScDatabaseRangeObj Co-authored-by: Oromidayo Owolabi Change-Id: Idcea0e26edad071cb7af05c89022f477564136ca Reviewed-on: https://gerrit.libreoffice.org/c/core/+/182858 Tested-by: Jenkins Reviewed-by: Noel Grandin --- sc/inc/datauno.hxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'sc/inc') diff --git a/sc/inc/datauno.hxx b/sc/inc/datauno.hxx index 9159e0af1718..f415dd0f0df1 100644 --- a/sc/inc/datauno.hxx +++ b/sc/inc/datauno.hxx @@ -22,7 +22,7 @@ #include "global.hxx" #include "queryparam.hxx" #include "subtotalparam.hxx" - +#include "dapiuno.hxx" #include #include #include @@ -370,7 +370,7 @@ public: // ScDataPilotFilterDescriptor - FilterDescriptor of a DataPilotDescriptors -class ScDataPilotFilterDescriptor final : public ScFilterDescriptorBase +class SC_DLLPUBLIC ScDataPilotFilterDescriptor final : public ScFilterDescriptorBase { private: rtl::Reference mxParent; @@ -407,7 +407,7 @@ private: void Refreshed_Impl(); public: - ScDatabaseRangeObj(ScDocShell* pDocSh, OUString aNm); + SC_DLLPUBLIC ScDatabaseRangeObj(ScDocShell* pDocSh, OUString aNm); SC_DLLPUBLIC ScDatabaseRangeObj(ScDocShell* pDocSh, const SCTAB nTab); virtual ~ScDatabaseRangeObj() override; @@ -424,7 +424,7 @@ public: virtual void SAL_CALL setName( const OUString& aName ) override; // XDatabaseRange - virtual css::table::CellRangeAddress SAL_CALL getDataArea() override; + SC_DLLPUBLIC virtual css::table::CellRangeAddress SAL_CALL getDataArea() override; virtual void SAL_CALL setDataArea( const css::table::CellRangeAddress& aDataArea ) override; virtual css::uno::Sequence< css::beans::PropertyValue > SAL_CALL getSortDescriptor() override; @@ -449,9 +449,9 @@ public: // XPropertySet virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo() override; - virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName, + SC_DLLPUBLIC virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName, const css::uno::Any& aValue ) override; - virtual css::uno::Any SAL_CALL getPropertyValue( + SC_DLLPUBLIC virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) override; virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName, const css::uno::Reference< -- cgit