diff options
author | Deepanshu Sharma <129deepanshusharma@gmail.com> | 2025-03-13 15:08:47 +0530 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2025-03-14 09:03:36 +0100 |
commit | c3e1743287c5c8b968eb9f45975b44f6adb65ea4 (patch) | |
tree | cdf4e4b6fea61bbc2d31f29e01a2b6b0e39b22e0 /sc/inc | |
parent | cb4750f651ef7cd03f0dfeb54103870c3ab7dc71 (diff) |
tdf#48140 Replace XDatabaseRange with ScDatabaseRangeObj
Co-authored-by: Oromidayo Owolabi <owolabioromidayo16@gmail.com>
Change-Id: Idcea0e26edad071cb7af05c89022f477564136ca
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/182858
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/datauno.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
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 <com/sun/star/sheet/GeneralFunction.hpp> #include <com/sun/star/sheet/XCellRangeReferrer.hpp> #include <com/sun/star/sheet/XSheetFilterDescriptor.hpp> @@ -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<ScDataPilotDescriptorBase> 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< |