summaryrefslogtreecommitdiff
path: root/sc/inc/token.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-11-04 11:11:50 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-11-05 12:18:29 +0100
commitc02c4df9414ed2bef96565522238ca05013d3ac3 (patch)
tree47e2195f5f1cd183d6939fbe3e9d650b8bc4f71e /sc/inc/token.hxx
parent78d81c2e6ee4eb7caf2d4822657bc4eaa57bfc79 (diff)
make some classes module-private
Change-Id: Ice9a57eedb166672dbdfae6da2a172ab77566a19 Reviewed-on: https://gerrit.libreoffice.org/81983 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/inc/token.hxx')
-rw-r--r--sc/inc/token.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/token.hxx b/sc/inc/token.hxx
index 965d7a81485b..317dc9b25bcd 100644
--- a/sc/inc/token.hxx
+++ b/sc/inc/token.hxx
@@ -271,7 +271,7 @@ public:
virtual FormulaToken* Clone() const override { return new ScRefListToken(*this); }
};
-class SC_DLLPUBLIC ScEmptyCellToken final : public formula::FormulaToken
+class ScEmptyCellToken final : public formula::FormulaToken
{
bool const bInherited :1;
bool const bDisplayedAsString :1;
@@ -289,7 +289,7 @@ public:
};
/** Transports the result from the interpreter to the formula cell. */
-class SC_DLLPUBLIC ScMatrixCellResultToken : public formula::FormulaToken
+class ScMatrixCellResultToken : public formula::FormulaToken
{
// No non-const access implemented, silence down unxsols4 complaining about
// the public GetMatrix() hiding the one from FormulaToken.
@@ -319,7 +319,7 @@ public:
/** Stores the matrix result at the formula cell, additionally the range the
matrix formula occupies. */
-class SC_DLLPUBLIC ScMatrixFormulaCellToken final : public ScMatrixCellResultToken
+class ScMatrixFormulaCellToken final : public ScMatrixCellResultToken
{
private:
SCROW nRows;
@@ -373,7 +373,7 @@ private:
void CloneUpperLeftIfNecessary();
};
-class SC_DLLPUBLIC ScHybridCellToken final : public formula::FormulaToken
+class ScHybridCellToken final : public formula::FormulaToken
{
private:
double const mfDouble;