summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2008-07-16 13:03:16 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2008-07-16 13:03:16 +0000
commit9baa79c5ea8b4d42174f84691f65ccc95db3c839 (patch)
tree44d49b9c2648c76a585524d1420d90a480e0123e
parent760308aad8d316505e8d719d67356a961cc74500 (diff)
INTEGRATION: CWS tl55 (1.113.10); FILE MERGED
2008/06/23 13:42:31 os 1.113.10.1: #i85999# dialog interface extended for grammar checking
-rw-r--r--svx/source/editeng/editeng.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/editeng/editeng.cxx b/svx/source/editeng/editeng.cxx
index c8297a53f82c..bb0a1292fccc 100644
--- a/svx/source/editeng/editeng.cxx
+++ b/svx/source/editeng/editeng.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: editeng.cxx,v $
- * $Revision: 1.114 $
+ * $Revision: 1.115 $
*
* This file is part of OpenOffice.org.
*
@@ -2176,18 +2176,18 @@ void EditEngine::EndSpelling()
/*-- 13.10.2003 16:43:27---------------------------------------------------
-----------------------------------------------------------------------*/
-bool EditEngine::SpellSentence(EditView& rView, ::svx::SpellPortions& rToFill)
+bool EditEngine::SpellSentence(EditView& rView, ::svx::SpellPortions& rToFill, bool bIsGrammarChecking )
{
DBG_CHKTHIS( EditEngine, 0 );
- return pImpEditEngine->SpellSentence( rView, rToFill );
+ return pImpEditEngine->SpellSentence( rView, rToFill, bIsGrammarChecking );
}
/*-- 13.10.2003 16:43:27---------------------------------------------------
-----------------------------------------------------------------------*/
-void EditEngine::ApplyChangedSentence(EditView& rEditView, const ::svx::SpellPortions& rNewPortions)
+void EditEngine::ApplyChangedSentence(EditView& rEditView, const ::svx::SpellPortions& rNewPortions, bool bIsGrammarChecking )
{
DBG_CHKTHIS( EditEngine, 0 );
- pImpEditEngine->ApplyChangedSentence( rEditView, rNewPortions );
+ pImpEditEngine->ApplyChangedSentence( rEditView, rNewPortions, bIsGrammarChecking );
}
sal_Bool EditEngine::HasConvertibleTextPortion( LanguageType nLang )