diff options
-rw-r--r-- | sc/inc/docoptio.hxx | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/sc/inc/docoptio.hxx b/sc/inc/docoptio.hxx index 46845df55434..c23f3c3de7f0 100644 --- a/sc/inc/docoptio.hxx +++ b/sc/inc/docoptio.hxx @@ -88,7 +88,6 @@ public: void SetTabDistance( USHORT nTabDist ) {nTabDistance = nTabDist;} void ResetDocOptions(); - inline void CopyTo(ScDocOptions& rOpt); inline const ScDocOptions& operator=( const ScDocOptions& rOpt ); inline int operator==( const ScDocOptions& rOpt ) const; @@ -125,31 +124,6 @@ public: static const LocaleDataWrapper& GetLocaleDataWrapper(); }; - -inline void ScDocOptions::CopyTo(ScDocOptions& rOpt) -{ - rOpt.bIsIgnoreCase = bIsIgnoreCase; - rOpt.bIsIter = bIsIter; - rOpt.nIterCount = nIterCount; - rOpt.fIterEps = fIterEps; - rOpt.nPrecStandardFormat = nPrecStandardFormat; - rOpt.nDay = nDay; - rOpt.nMonth = nMonth; - rOpt.nYear2000 = nYear2000; - rOpt.nYear = nYear; - rOpt.nTabDistance = nTabDistance; - rOpt.bCalcAsShown = bCalcAsShown; - rOpt.bMatchWholeCell = bMatchWholeCell; - rOpt.bDoAutoSpell = bDoAutoSpell; - rOpt.bLookUpColRowNames = bLookUpColRowNames; - rOpt.bFormulaRegexEnabled = bFormulaRegexEnabled; - rOpt.bUseEnglishFuncName = bUseEnglishFuncName; - rOpt.eFormulaGrammar = eFormulaGrammar; - rOpt.aFormulaSepArg = aFormulaSepArg; - rOpt.aFormulaSepArrayRow = aFormulaSepArrayRow; - rOpt.aFormulaSepArrayCol = aFormulaSepArrayCol; -} - inline const ScDocOptions& ScDocOptions::operator=( const ScDocOptions& rCpy ) { bIsIgnoreCase = rCpy.bIsIgnoreCase; |