summaryrefslogtreecommitdiff
path: root/sc/source/ui/dbgui/imoptdlg.cxx
diff options
context:
space:
mode:
authorNiklas Nebel <nn@openoffice.org>2011-02-15 10:55:41 +0100
committerNiklas Nebel <nn@openoffice.org>2011-02-15 10:55:41 +0100
commitc97e8ed65c02f7a0fe39f888f383d5a0bfff7c2a (patch)
tree908e4d544958bc955ab85de3f9aedfb334a4638f /sc/source/ui/dbgui/imoptdlg.cxx
parentaede73a350906eedae41e5971511c6c2f2c0e5f2 (diff)
parentd0ce561b856d43b13d5884b5aa5106f7889ea929 (diff)
csvexport: merge with DEV300_m100
Diffstat (limited to 'sc/source/ui/dbgui/imoptdlg.cxx')
-rw-r--r--sc/source/ui/dbgui/imoptdlg.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/dbgui/imoptdlg.cxx b/sc/source/ui/dbgui/imoptdlg.cxx
index 98d2da500d08..b21afc999b28 100644
--- a/sc/source/ui/dbgui/imoptdlg.cxx
+++ b/sc/source/ui/dbgui/imoptdlg.cxx
@@ -48,7 +48,7 @@ ScImportOptions::ScImportOptions( const String& rStr )
// because the import options string is passed here when a CSV file is loaded and saved again.
// The old format is still supported because it might be used in macros.
- bFixedWidth = FALSE;
+ bFixedWidth = sal_False;
nFieldSepCode = 0;
nTextSepCode = 0;
eCharSet = RTL_TEXTENCODING_DONTKNOW;
@@ -60,7 +60,7 @@ ScImportOptions::ScImportOptions( const String& rStr )
// first 3 tokens: common
String aToken( rStr.GetToken( 0, ',' ) );
if( aToken.EqualsIgnoreCaseAscii( pStrFix ) )
- bFixedWidth = TRUE;
+ bFixedWidth = sal_True;
else
nFieldSepCode = (sal_Unicode) aToken.ToInt32();
nTextSepCode = (sal_Unicode) rStr.GetToken(1,',').ToInt32();