summaryrefslogtreecommitdiffstats
path: root/sc/inc/dpobject.hxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2012-04-19 14:25:54 +0200
committerLuboš Luňák <l.lunak@suse.cz>2012-04-19 14:29:14 +0200
commit2ff88c4a1b305bd0fcabd4d37b04920d15947291 (patch)
tree54c92ea127edbf7f351dcd1c123acb47427db889 /sc/inc/dpobject.hxx
parentchange strange way of testing a bool (diff)
downloadcore-2ff88c4a1b305bd0fcabd4d37b04920d15947291.tar.gz
core-2ff88c4a1b305bd0fcabd4d37b04920d15947291.zip
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
Diffstat (limited to 'sc/inc/dpobject.hxx')
-rw-r--r--sc/inc/dpobject.hxx20
1 files changed, 10 insertions, 10 deletions
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<ScDPObject*>& rRefs);
- SC_DLLPUBLIC bool ReloadGroupsInCache(ScDPObject* pDPObj, std::set<ScDPObject*>& rRefs);
+ sal_uLong ReloadCache(ScDPObject* pDPObj, std::set<ScDPObject*>& rRefs);
+ bool ReloadGroupsInCache(ScDPObject* pDPObj, std::set<ScDPObject*>& 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: