summaryrefslogtreecommitdiff
path: root/sd/source/ui/dlg/SpellDialogChildWindow.cxx
diff options
context:
space:
mode:
authorobo <obo@openoffice.org>2010-06-14 16:22:01 +0200
committerobo <obo@openoffice.org>2010-06-14 16:22:01 +0200
commitc60e8e8fe3400d89ac77a58921f0cc20b0ad683c (patch)
tree7c41f3dabd884e60b91215ea476319f0bba728fe /sd/source/ui/dlg/SpellDialogChildWindow.cxx
parent0fc10156331c3500ba9c2637433309ebde987241 (diff)
parent3524dd3cf642194e60b09d6a9dea88b9d4e983f7 (diff)
CWS-TOOLING: integrate CWS tl80
Diffstat (limited to 'sd/source/ui/dlg/SpellDialogChildWindow.cxx')
-rwxr-xr-x[-rw-r--r--]sd/source/ui/dlg/SpellDialogChildWindow.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/dlg/SpellDialogChildWindow.cxx b/sd/source/ui/dlg/SpellDialogChildWindow.cxx
index 95d4277f8f42..7aee12f23bbd 100644..100755
--- a/sd/source/ui/dlg/SpellDialogChildWindow.cxx
+++ b/sd/source/ui/dlg/SpellDialogChildWindow.cxx
@@ -96,14 +96,14 @@ void SpellDialogChildWindow::InvalidateSpellDialog (void)
-::svx::SpellPortions SpellDialogChildWindow::GetNextWrongSentence (void)
+::svx::SpellPortions SpellDialogChildWindow::GetNextWrongSentence( bool /*bRecheck*/ )
{
::svx::SpellPortions aResult;
if (mpSdOutliner != NULL)
{
ProvideOutliner();
- aResult = mpSdOutliner->GetNextSpellSentence ();
+ aResult = mpSdOutliner->GetNextSpellSentence();
}
// Close the spell check dialog when there are no more sentences to
@@ -125,7 +125,7 @@ void SpellDialogChildWindow::InvalidateSpellDialog (void)
void SpellDialogChildWindow::ApplyChangedSentence (
- const ::svx::SpellPortions& rChanged)
+ const ::svx::SpellPortions& rChanged, bool bRecheck )
{
if (mpSdOutliner != NULL)
{
@@ -133,7 +133,7 @@ void SpellDialogChildWindow::ApplyChangedSentence (
if (pOutlinerView != NULL)
mpSdOutliner->ApplyChangedSentence (
pOutlinerView->GetEditView(),
- rChanged, false);
+ rChanged, bRecheck);
}
}