diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2008-07-16 13:04:21 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2008-07-16 13:04:21 +0000 |
commit | 08b19703da1afec87c35529c363a314baa7360a0 (patch) | |
tree | 4bd1aa33cb0e60c967d6ee286fd1c077116409dc /svx | |
parent | 9e77f748741ea6bd339ddbf84a88074b2eb9953b (diff) |
INTEGRATION: CWS tl55 (1.36.10); FILE MERGED
2008/06/23 13:42:10 os 1.36.10.1: #i85999# dialog interface extended for grammar checking
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/outliner/outlin2.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/outliner/outlin2.cxx b/svx/source/outliner/outlin2.cxx index 30919b1708ee..f22a244fc8ec 100644 --- a/svx/source/outliner/outlin2.cxx +++ b/svx/source/outliner/outlin2.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: outlin2.cxx,v $ - * $Revision: 1.36 $ + * $Revision: 1.37 $ * * This file is part of OpenOffice.org. * @@ -790,14 +790,14 @@ void Outliner::EndSpelling() /*-- 13.10.2003 16:56:23--------------------------------------------------- -----------------------------------------------------------------------*/ -bool Outliner::SpellSentence(EditView& rEditView, ::svx::SpellPortions& rToFill) +bool Outliner::SpellSentence(EditView& rEditView, ::svx::SpellPortions& rToFill, bool bIsGrammarChecking ) { - return pEditEngine->SpellSentence(rEditView, rToFill); + return pEditEngine->SpellSentence(rEditView, rToFill, bIsGrammarChecking ); } /*-- 13.10.2003 16:56:25--------------------------------------------------- -----------------------------------------------------------------------*/ -void Outliner::ApplyChangedSentence(EditView& rEditView, const ::svx::SpellPortions& rNewPortions) +void Outliner::ApplyChangedSentence(EditView& rEditView, const ::svx::SpellPortions& rNewPortions, bool bIsGrammarChecking ) { - pEditEngine->ApplyChangedSentence( rEditView, rNewPortions); + pEditEngine->ApplyChangedSentence( rEditView, rNewPortions, bIsGrammarChecking ); } |