diff options
author | David Tardon <dtardon@redhat.com> | 2015-04-16 10:01:37 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2015-04-16 10:02:17 +0200 |
commit | 565716b0abca281dfc1291aedf4497f55611b6b1 (patch) | |
tree | 7aa0296c20fcc596216f47415621bfa257d08971 /sc/inc/dbdata.hxx | |
parent | cfaccff5aa7be7e240e51c6661ee09812b1aa113 (diff) |
Revert "make more classes dllpublic"
This reverts commit add2ca7b3ab10ed9d18e60d8e50020168d922836.
It causes too much breakage on windows. It is better to start again from
scratch.
Diffstat (limited to 'sc/inc/dbdata.hxx')
-rw-r--r-- | sc/inc/dbdata.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sc/inc/dbdata.hxx b/sc/inc/dbdata.hxx index b23927591976..708bd858c628 100644 --- a/sc/inc/dbdata.hxx +++ b/sc/inc/dbdata.hxx @@ -35,7 +35,7 @@ struct ScQueryParam; struct ScSubTotalParam; struct ScImportParam; -class SC_DLLPUBLIC ScDBData : public ScRefreshTimer +class ScDBData : public ScRefreshTimer { private: boost::scoped_ptr<ScSortParam> mpSortParam; @@ -76,7 +76,7 @@ public: bool operator() (const ScDBData& left, const ScDBData& right) const; }; - ScDBData(const OUString& rName, + SC_DLLPUBLIC ScDBData(const OUString& rName, SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, bool bByR = true, bool bHasH = true); @@ -91,7 +91,7 @@ public: const OUString& GetName() const { return aName; } const OUString& GetUpperName() const { return aUpper; } void GetArea(SCTAB& rTab, SCCOL& rCol1, SCROW& rRow1, SCCOL& rCol2, SCROW& rRow2) const; - void GetArea(ScRange& rRange) const; + SC_DLLPUBLIC void GetArea(ScRange& rRange) const; void SetArea(SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2); void MoveTo(SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2); bool IsByRow() const { return bByRow; } @@ -115,10 +115,10 @@ public: void GetSortParam(ScSortParam& rSortParam) const; void SetSortParam(const ScSortParam& rSortParam); - void GetQueryParam(ScQueryParam& rQueryParam) const; - void SetQueryParam(const ScQueryParam& rQueryParam); - bool GetAdvancedQuerySource(ScRange& rSource) const; - void SetAdvancedQuerySource(const ScRange* pSource); + SC_DLLPUBLIC void GetQueryParam(ScQueryParam& rQueryParam) const; + SC_DLLPUBLIC void SetQueryParam(const ScQueryParam& rQueryParam); + SC_DLLPUBLIC bool GetAdvancedQuerySource(ScRange& rSource) const; + SC_DLLPUBLIC void SetAdvancedQuerySource(const ScRange* pSource); void GetSubTotalParam(ScSubTotalParam& rSubTotalParam) const; void SetSubTotalParam(const ScSubTotalParam& rSubTotalParam); @@ -130,7 +130,7 @@ public: bool IsDBAtArea(SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2) const; bool HasImportParam() const; - bool HasQueryParam() const; + SC_DLLPUBLIC bool HasQueryParam() const; bool HasSortParam() const; bool HasSubTotalParam() const; |