summaryrefslogtreecommitdiff
path: root/sc/source/ui/unoobj/filtuno.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-23 11:08:48 +0200
committerNoel Grandin <noel@peralex.com>2014-04-23 11:11:51 +0200
commit6dda3d45c902d64323a085ea1604a993521f313d (patch)
tree9b964839510ac36762733bd99951539040f8ffc0 /sc/source/ui/unoobj/filtuno.cxx
parente32da7783686f088fa83cdae209bcf1c81d82f1e (diff)
sc: sal_Bool->bool
Change-Id: I70aad0b38979f45a313b8ac36890fb6c64d11bb0
Diffstat (limited to 'sc/source/ui/unoobj/filtuno.cxx')
-rw-r--r--sc/source/ui/unoobj/filtuno.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/ui/unoobj/filtuno.cxx b/sc/source/ui/unoobj/filtuno.cxx
index 68fb7d7a02c0..6418d606a8f9 100644
--- a/sc/source/ui/unoobj/filtuno.cxx
+++ b/sc/source/ui/unoobj/filtuno.cxx
@@ -236,9 +236,9 @@ sal_Int16 SAL_CALL ScFilterOptionsObj::execute() throw(uno::RuntimeException, st
}
else
{
- sal_Bool bMultiByte = sal_True;
- sal_Bool bDBEnc = false;
- sal_Bool bAscii = false;
+ bool bMultiByte = true;
+ bool bDBEnc = false;
+ bool bAscii = false;
sal_Unicode cStrDel = '"';
sal_Unicode cAsciiDel = ';';
@@ -258,7 +258,7 @@ sal_Int16 SAL_CALL ScFilterOptionsObj::execute() throw(uno::RuntimeException, st
cAsciiDel = '\t';
aTitle = ScGlobal::GetRscString( STR_EXPORT_ASCII );
- bAscii = sal_True;
+ bAscii = true;
}
else if ( aFilterString == ScDocShell::GetLotusFilterName() )
{
@@ -281,7 +281,7 @@ sal_Int16 SAL_CALL ScFilterOptionsObj::execute() throw(uno::RuntimeException, st
aTitle = ScGlobal::GetRscString( STR_IMPORT_DBF );
}
load_CharSet( eEncoding, bExport );
- bDBEnc = sal_True;
+ bDBEnc = true;
}
else if ( aFilterString == ScDocShell::GetDifFilterName() )
{