summaryrefslogtreecommitdiff
path: root/linguistic/source/spelldta.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-15 08:48:53 +0200
committerNoel Grandin <noel@peralex.com>2014-04-15 09:02:34 +0200
commit86c280acb528048131d233d96ce95848c6acf683 (patch)
tree3ce31467c7d4f35d4e4cb9eda1fecbd7c6df2708 /linguistic/source/spelldta.cxx
parentaf047fc242c51d97477c109653a98749d2af335d (diff)
linguistic: sal_Bool->bool
Change-Id: Ifed60967edd768b16cafba3c2293149610138213
Diffstat (limited to 'linguistic/source/spelldta.cxx')
-rw-r--r--linguistic/source/spelldta.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/linguistic/source/spelldta.cxx b/linguistic/source/spelldta.cxx
index b8490ee08aeb..f1d5d7b00023 100644
--- a/linguistic/source/spelldta.cxx
+++ b/linguistic/source/spelldta.cxx
@@ -111,7 +111,7 @@ void SeqRemoveNegEntries( Sequence< OUString > &rSeq,
sal_Int16 nLanguage )
{
static const OUString aEmpty;
- sal_Bool bSthRemoved = sal_False;
+ bool bSthRemoved = false;
sal_Int32 nLen = rSeq.getLength();
OUString *pEntries = rSeq.getArray();
for (sal_Int32 i = 0; i < nLen; ++i)
@@ -121,7 +121,7 @@ void SeqRemoveNegEntries( Sequence< OUString > &rSeq,
if (xNegEntry.is())
{
pEntries[i] = aEmpty;
- bSthRemoved = sal_True;
+ bSthRemoved = true;
}
}
if (bSthRemoved)