diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2010-10-13 01:04:13 -0400 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2010-10-13 01:04:13 -0400 |
commit | 1681ba148e9a118061b33e8403aa17ce8d49709d (patch) | |
tree | 79f41131b9a615b10a44973febbb9a37735a1ed8 /sc | |
parent | 123cca20a19868a52a25f79680f20cb4e92ed7ce (diff) |
ScDocOptions::CopyTo() no longer used. Nuked.
Diffstat (limited to 'sc')
-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; |