diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-28 20:32:19 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-29 13:15:28 +0100 |
commit | 5e55f7a54170b25aaf82520c1cde307ece362eef (patch) | |
tree | 5e8a2d47650735c860b5a0054fa0d19cf2312d59 /sc | |
parent | de62d0c77e2f9e24f72fd638cb5c5e365ff164b5 (diff) |
make some function symbols module private
improve the script to filter out more noise generated by library symbols
Change-Id: I22bf6037d56bc4015001825c3fb3b21a39d85e07
Reviewed-on: https://gerrit.libreoffice.org/84022
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/scresid.hxx | 2 | ||||
-rw-r--r-- | sc/qa/unit/helper/qahelper.cxx | 2 | ||||
-rw-r--r-- | sc/qa/unit/helper/qahelper.hxx | 14 |
3 files changed, 8 insertions, 10 deletions
diff --git a/sc/inc/scresid.hxx b/sc/inc/scresid.hxx index 5a63bd809fb5..a9b7f2798a6d 100644 --- a/sc/inc/scresid.hxx +++ b/sc/inc/scresid.hxx @@ -24,7 +24,7 @@ #include "scdllapi.h" OUString SC_DLLPUBLIC ScResId(const char* pId); -OUString SC_DLLPUBLIC ScResId(const char* pId, int nCardinality); +OUString ScResId(const char* pId, int nCardinality); #endif // SC_SCRESMGR_HXX diff --git a/sc/qa/unit/helper/qahelper.cxx b/sc/qa/unit/helper/qahelper.cxx index b1d70b3e30d3..73540c9a4233 100644 --- a/sc/qa/unit/helper/qahelper.cxx +++ b/sc/qa/unit/helper/qahelper.cxx @@ -343,7 +343,7 @@ const SdrOle2Obj* getSingleChartObject(ScDocument& rDoc, sal_uInt16 nPage) return pObj; } -std::vector<OUString> getChartRangeRepresentations(const SdrOle2Obj& rChartObj) +static std::vector<OUString> getChartRangeRepresentations(const SdrOle2Obj& rChartObj) { std::vector<OUString> aRangeReps; diff --git a/sc/qa/unit/helper/qahelper.hxx b/sc/qa/unit/helper/qahelper.hxx index fa284defb7a8..3e8e5d455484 100644 --- a/sc/qa/unit/helper/qahelper.hxx +++ b/sc/qa/unit/helper/qahelper.hxx @@ -115,7 +115,7 @@ SCQAHELPER_DLLPUBLIC std::ostream& operator<<(std::ostream& rStrm, const OpCode& // eventually perhaps iOS) special cases here, too)? Please move this to osl, // it sure looks generally useful. Or am I missing something? -SCQAHELPER_DLLPUBLIC void loadFile(const OUString& aFileName, std::string& aContent); +void loadFile(const OUString& aFileName, std::string& aContent); SCQAHELPER_DLLPUBLIC void testFile(const OUString& aFileName, ScDocument& rDoc, SCTAB nTab, StringType aStringFormat = StringType::StringValue); @@ -126,17 +126,15 @@ SCQAHELPER_DLLPUBLIC const SdrOle2Obj* getSingleOleObject(ScDocument& rDoc, sal_ SCQAHELPER_DLLPUBLIC const SdrOle2Obj* getSingleChartObject(ScDocument& rDoc, sal_uInt16 nPage); -SCQAHELPER_DLLPUBLIC std::vector<OUString> getChartRangeRepresentations(const SdrOle2Obj& rChartObj); - SCQAHELPER_DLLPUBLIC ScRangeList getChartRanges(ScDocument& rDoc, const SdrOle2Obj& rChartObj); -SCQAHELPER_DLLPUBLIC bool checkFormula(ScDocument& rDoc, const ScAddress& rPos, const char* pExpected); +bool checkFormula(ScDocument& rDoc, const ScAddress& rPos, const char* pExpected); -SCQAHELPER_DLLPUBLIC bool checkFormulaPosition(ScDocument& rDoc, const ScAddress& rPos); -SCQAHELPER_DLLPUBLIC bool checkFormulaPositions( +bool checkFormulaPosition(ScDocument& rDoc, const ScAddress& rPos); +bool checkFormulaPositions( ScDocument& rDoc, SCTAB nTab, SCCOL nCol, const SCROW* pRows, size_t nRowCount); -SCQAHELPER_DLLPUBLIC std::unique_ptr<ScTokenArray> compileFormula( +std::unique_ptr<ScTokenArray> compileFormula( ScDocument* pDoc, const OUString& rFormula, formula::FormulaGrammar::Grammar eGram = formula::FormulaGrammar::GRAM_NATIVE ); @@ -144,7 +142,7 @@ SCQAHELPER_DLLPUBLIC bool checkOutput( const ScDocument* pDoc, const ScRange& aOutRange, const std::vector<std::vector<const char*>>& aCheck, const char* pCaption ); -SCQAHELPER_DLLPUBLIC void clearFormulaCellChangedFlag( ScDocument& rDoc, const ScRange& rRange ); +void clearFormulaCellChangedFlag( ScDocument& rDoc, const ScRange& rRange ); /** * Check if the cell at specified position is a formula cell that doesn't |