diff options
author | Albert Thuswaldner <albert.thuswaldner@gmail.com> | 2012-04-10 00:09:40 +0200 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-04-10 12:19:15 -0400 |
commit | bf0629e09d176555aaa10f60061b206103cc0295 (patch) | |
tree | 68ef7efc0b3c6faf895b46f2debf0c6259539b66 /sc/source/ui/docshell/docsh3.cxx | |
parent | e6d4795e52643a8e940f79c1ee6510cc14fdfb38 (diff) |
Grouping ScFormulaOptions
Diffstat (limited to 'sc/source/ui/docshell/docsh3.cxx')
-rw-r--r-- | sc/source/ui/docshell/docsh3.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/docshell/docsh3.cxx b/sc/source/ui/docshell/docsh3.cxx index 522e9d78a121..a07226bd288c 100644 --- a/sc/source/ui/docshell/docsh3.cxx +++ b/sc/source/ui/docshell/docsh3.cxx @@ -432,7 +432,7 @@ void ScDocShell::InitOptions(bool bForLoading) // called from InitNew and L ScModule* pScMod = SC_MOD(); ScDocOptions aDocOpt = pScMod->GetDocOptions(); - ScAppOptions aAppOpt = pScMod->GetAppOptions(); + ScFormulaOptions aFormulaOpt = pScMod->GetFormulaOptions(); ScViewOptions aViewOpt = pScMod->GetViewOptions(); aDocOpt.SetAutoSpell( bAutoSpell ); @@ -449,7 +449,7 @@ void ScDocShell::InitOptions(bool bForLoading) // called from InitNew and L aDocument.SetDocOptions( aDocOpt ); aDocument.SetViewOptions( aViewOpt ); - SetFormulaOptions( aAppOpt ); + SetFormulaOptions( aFormulaOpt ); // Druck-Optionen werden jetzt direkt vor dem Drucken gesetzt |