summaryrefslogtreecommitdiff
path: root/sc/source/ui/dbgui/imoptdlg.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-18 13:22:44 +0200
committerNoel Grandin <noel@peralex.com>2014-02-19 13:04:58 +0200
commit9a883d6d6fcc9ec4be777cff62cef564e551750a (patch)
treecd4051e3c20cb18e380349ad33de9cba0a63069f /sc/source/ui/dbgui/imoptdlg.cxx
parent28e8649a0c46059da0fa1238f1e237df731f8578 (diff)
sal_Bool->bool
Change-Id: I999a8f72d184f611b6abee8aa64590ccd3cd41c4
Diffstat (limited to 'sc/source/ui/dbgui/imoptdlg.cxx')
-rw-r--r--sc/source/ui/dbgui/imoptdlg.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/dbgui/imoptdlg.cxx b/sc/source/ui/dbgui/imoptdlg.cxx
index bfbb546b6137..5c2124c79a1f 100644
--- a/sc/source/ui/dbgui/imoptdlg.cxx
+++ b/sc/source/ui/dbgui/imoptdlg.cxx
@@ -41,7 +41,7 @@ ScImportOptions::ScImportOptions( const OUString& rStr )
nFieldSepCode = 0;
nTextSepCode = 0;
eCharSet = RTL_TEXTENCODING_DONTKNOW;
- bSaveAsShown = sal_True; // "true" if not in string (after CSV import)
+ bSaveAsShown = true; // "true" if not in string (after CSV import)
bQuoteAllText = false;
bSaveFormulas = false;
sal_Int32 nTokenCount = comphelper::string::getTokenCount(rStr, ',');
@@ -50,7 +50,7 @@ ScImportOptions::ScImportOptions( const OUString& rStr )
// first 3 tokens: common
OUString aToken( rStr.getToken( 0, ',' ) );
if( aToken.equalsIgnoreAsciiCase( pStrFix ) )
- bFixedWidth = sal_True;
+ bFixedWidth = true;
else
nFieldSepCode = ScAsciiOptions::GetWeightedFieldSep( aToken, true);
nTextSepCode = (sal_Unicode) rStr.getToken(1,',').toInt32();
@@ -61,7 +61,7 @@ ScImportOptions::ScImportOptions( const OUString& rStr )
{
// compatibility with old options string: "Save as shown" as 4th token, numeric
bSaveAsShown = (rStr.getToken( 3, ',' ).toInt32() ? sal_True : false);
- bQuoteAllText = sal_True; // use old default then
+ bQuoteAllText = true; // use old default then
}
else
{