diff options
-rw-r--r-- | include/svl/zformat.hxx | 4 | ||||
-rw-r--r-- | svl/source/numbers/zformat.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/svl/zformat.hxx b/include/svl/zformat.hxx index b5da86a8e0a8..50be721d6430 100644 --- a/include/svl/zformat.hxx +++ b/include/svl/zformat.hxx @@ -470,7 +470,7 @@ private: @returns one of css::i18n::CalendarDisplayCode values according to eCodeType and the check executed (or passed). */ - SVL_DLLPRIVATE sal_Int32 ImpUseMonthCase( int & io_nState, const ImpSvNumFor& rNumFor, NfKeywordIndex eCodeType ) const; + SVL_DLLPRIVATE static sal_Int32 ImpUseMonthCase( int & io_nState, const ImpSvNumFor& rNumFor, NfKeywordIndex eCodeType ); /// Whether it's a (YY)YY-M(M)-D(D) format. SVL_DLLPRIVATE bool ImpIsIso8601( const ImpSvNumFor& rNumFor ); @@ -542,7 +542,7 @@ private: // check subcondition // OP undefined => -1 // else 0 or 1 - SVL_DLLPRIVATE short ImpCheckCondition(double& fNumber, + SVL_DLLPRIVATE static short ImpCheckCondition(double& fNumber, double& fLimit, SvNumberformatLimitOps eOp); diff --git a/svl/source/numbers/zformat.cxx b/svl/source/numbers/zformat.cxx index bdeb74fff88c..17583d455628 100644 --- a/svl/source/numbers/zformat.cxx +++ b/svl/source/numbers/zformat.cxx @@ -2893,7 +2893,7 @@ bool SvNumberformat::ImpGetTimeOutput(double fNumber, // inspection of month name around that one, that would enable different month // cases in one format. Though probably the most rare use case ever.. -sal_Int32 SvNumberformat::ImpUseMonthCase( int & io_nState, const ImpSvNumFor& rNumFor, NfKeywordIndex eCodeType ) const +sal_Int32 SvNumberformat::ImpUseMonthCase( int & io_nState, const ImpSvNumFor& rNumFor, NfKeywordIndex eCodeType ) { using namespace ::com::sun::star::i18n; if (!io_nState) |