From 2ff88c4a1b305bd0fcabd4d37b04920d15947291 Mon Sep 17 00:00:00 2001 From: Luboš Luňák Date: Thu, 19 Apr 2012 14:25:54 +0200 Subject: Revert "do not include contents of huge sc/sd/sw libs into tiny unittests" The need to export symbols for tests is apparently not considered worth the big extra disk space. This reverts commit 69d46dd7a6adfffd71da055bb65108c80d27395f. Conflicts: sd/CppunitTest_sd_uimpress.mk sw/CppunitTest_sw_swdoc_test.mk --- sc/inc/dpobject.hxx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'sc/inc/dpobject.hxx') diff --git a/sc/inc/dpobject.hxx b/sc/inc/dpobject.hxx index d27efef168c2..4f97b404ad79 100644 --- a/sc/inc/dpobject.hxx +++ b/sc/inc/dpobject.hxx @@ -283,9 +283,9 @@ public: ScDocument* mpDoc; public: SheetCaches(ScDocument* pDoc); - SC_DLLPUBLIC bool hasCache(const ScRange& rRange) const; + bool hasCache(const ScRange& rRange) const; const ScDPCache* getCache(const ScRange& rRange, const ScDPDimensionSaveData* pDimData); - SC_DLLPUBLIC size_t size() const; + size_t size() const; void updateReference( UpdateRefMode eMode, const ScRange& r, SCsCOL nDx, SCsROW nDy, SCsTAB nDz); @@ -308,10 +308,10 @@ public: ScDocument* mpDoc; public: NameCaches(ScDocument* pDoc); - SC_DLLPUBLIC bool hasCache(const rtl::OUString& rName) const; + bool hasCache(const rtl::OUString& rName) const; const ScDPCache* getCache( const ::rtl::OUString& rName, const ScRange& rRange, const ScDPDimensionSaveData* pDimData); - SC_DLLPUBLIC size_t size() const; + size_t size() const; private: ScDPCache* getExistingCache(const rtl::OUString& rName); @@ -370,8 +370,8 @@ public: ScDPCollection(const ScDPCollection& r); ~ScDPCollection(); - SC_DLLPUBLIC sal_uLong ReloadCache(ScDPObject* pDPObj, std::set& rRefs); - SC_DLLPUBLIC bool ReloadGroupsInCache(ScDPObject* pDPObj, std::set& rRefs); + sal_uLong ReloadCache(ScDPObject* pDPObj, std::set& rRefs); + bool ReloadGroupsInCache(ScDPObject* pDPObj, std::set& rRefs); SC_DLLPUBLIC size_t GetCount() const; SC_DLLPUBLIC ScDPObject* operator[](size_t nIndex); @@ -395,15 +395,15 @@ public: * * @return new name for data pilot object. */ - SC_DLLPUBLIC ::rtl::OUString CreateNewName( sal_uInt16 nMin = 1 ) const; + ::rtl::OUString CreateNewName( sal_uInt16 nMin = 1 ) const; - SC_DLLPUBLIC void FreeTable(ScDPObject* pDPObj); + void FreeTable(ScDPObject* pDPObj); SC_DLLPUBLIC bool InsertNewTable(ScDPObject* pDPObj); bool HasDPTable(SCCOL nCol, SCROW nRow, SCTAB nTab) const; - SC_DLLPUBLIC SheetCaches& GetSheetCaches(); - SC_DLLPUBLIC NameCaches& GetNameCaches(); + SheetCaches& GetSheetCaches(); + NameCaches& GetNameCaches(); DBCaches& GetDBCaches(); private: -- cgit