summaryrefslogtreecommitdiffstats
path: root/sw/inc/splargs.hxx
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2008-07-16 12:23:43 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2008-07-16 12:23:43 +0000
commit1708f775ec9dfeb747ca4971cb9a21462dc66225 (patch)
treec42eea180674b9e4d3bfdb5ac59d44819a2e8fba /sw/inc/splargs.hxx
parentINTEGRATION: CWS tl55 (1.57.46); FILE MERGED (diff)
downloadcore-1708f775ec9dfeb747ca4971cb9a21462dc66225.tar.gz
core-1708f775ec9dfeb747ca4971cb9a21462dc66225.zip
INTEGRATION: CWS tl55 (1.7.50); FILE MERGED
2008/06/26 14:19:58 os 1.7.50.1: i85999 interactive grammar checking
Diffstat (limited to 'sw/inc/splargs.hxx')
-rw-r--r--sw/inc/splargs.hxx10
1 files changed, 7 insertions, 3 deletions
diff --git a/sw/inc/splargs.hxx b/sw/inc/splargs.hxx
index e564bc5ec77a..abe0265ea39f 100644
--- a/sw/inc/splargs.hxx
+++ b/sw/inc/splargs.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: splargs.hxx,v $
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
* This file is part of OpenOffice.org.
*
@@ -115,12 +115,16 @@ struct SwSpellArgs : SwArgsBase
::com::sun::star::uno::Reference<
::com::sun::star::linguistic2::XSpellAlternatives > xSpellAlt;
+ bool bIsGrammarCheck;
+
SwSpellArgs(::com::sun::star::uno::Reference<
::com::sun::star::linguistic2::XSpellChecker1 > &rxSplChk,
SwTxtNode* pStart, SwIndex& rStart,
- SwTxtNode* pEnd, SwIndex& rEnd )
+ SwTxtNode* pEnd, SwIndex& rEnd,
+ bool bGrammar )
: SwArgsBase( pStart, rStart, pEnd, rEnd ),
- xSpeller( rxSplChk )
+ xSpeller( rxSplChk ),
+ bIsGrammarCheck( bGrammar )
{}
};