summaryrefslogtreecommitdiff
path: root/l10ntools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-10 12:14:47 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-10 17:11:48 +0100
commitf121dd39251e9696ec601e29dc5077a3928e99d1 (patch)
treed816a5c87d5c56969a4425a88e1bce170e753fa0 /l10ntools
parent20cf2d93fb25d965308865802b1d4e67e682722f (diff)
sal_Bool -> bool
Change-Id: Iacfeab2cc6fb8bb85b964a995c5df16d03ed2e53
Diffstat (limited to 'l10ntools')
-rw-r--r--l10ntools/inc/export.hxx2
-rw-r--r--l10ntools/source/merge.cxx5
2 files changed, 3 insertions, 4 deletions
diff --git a/l10ntools/inc/export.hxx b/l10ntools/inc/export.hxx
index d28df05798c2..ee44f6686096 100644
--- a/l10ntools/inc/export.hxx
+++ b/l10ntools/inc/export.hxx
@@ -214,7 +214,7 @@ public:
sTitle[ rId ] = rTitle;
bTitleFirst[ rId ] = true;
}
- sal_Bool GetText( OString &rReturn, sal_uInt16 nTyp, const OString &nLangIndex, sal_Bool bDel = sal_False );
+ bool GetText( OString &rReturn, sal_uInt16 nTyp, const OString &nLangIndex, sal_Bool bDel = sal_False );
/**
Generate QTZ string with ResData
diff --git a/l10ntools/source/merge.cxx b/l10ntools/source/merge.cxx
index 2f8cae02396f..20d53d2d147e 100644
--- a/l10ntools/source/merge.cxx
+++ b/l10ntools/source/merge.cxx
@@ -96,11 +96,10 @@ ResData::ResData( const OString &rGId, const OString &rFilename)
// class MergeEntrys
//
-sal_Bool MergeEntrys::GetText( OString &rReturn,
+bool MergeEntrys::GetText( OString &rReturn,
sal_uInt16 nTyp, const OString &nLangIndex, sal_Bool bDel )
{
-
- sal_Bool bReturn=sal_True;
+ bool bReturn = true;
switch ( nTyp ) {
case STRING_TYP_TEXT :
rReturn = sText[ nLangIndex ];