summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/asciiopt.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kyoshida@novell.com>2009-07-27 11:27:09 -0400
committerKohei Yoshida <kyoshida@novell.com>2009-07-27 11:27:09 -0400
commit44ccce1e58ad84329f5d5d9f233c5ae844422218 (patch)
tree9d86f9c5f2f01c670404d139f984a8e026902673 /sc/source/ui/inc/asciiopt.hxx
parent395c0a7d4ff78421ecfa77d4597e0bca66f335e9 (diff)
#i3687# #i97416#: initial porting of patches from ooo-build.
Diffstat (limited to 'sc/source/ui/inc/asciiopt.hxx')
-rw-r--r--sc/source/ui/inc/asciiopt.hxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/sc/source/ui/inc/asciiopt.hxx b/sc/source/ui/inc/asciiopt.hxx
index a26929dc92ea..40c95f0f0702 100644
--- a/sc/source/ui/inc/asciiopt.hxx
+++ b/sc/source/ui/inc/asciiopt.hxx
@@ -65,6 +65,7 @@ private:
BOOL bFixedLen;
String aFieldSeps;
BOOL bMergeFieldSeps;
+ bool bQuotedFieldAsText;
sal_Unicode cTextSep;
CharSet eCharSet;
BOOL bCharSetSystem;
@@ -93,6 +94,7 @@ public:
BOOL GetCharSetSystem() const { return bCharSetSystem; }
const String& GetFieldSeps() const { return aFieldSeps; }
BOOL IsMergeSeps() const { return bMergeFieldSeps; }
+ bool IsQuotedAsText() const { return bQuotedFieldAsText; }
sal_Unicode GetTextSep() const { return cTextSep; }
BOOL IsFixedLen() const { return bFixedLen; }
USHORT GetInfoCount() const { return nInfoCount; }
@@ -105,6 +107,7 @@ public:
void SetFixedLen( BOOL bSet ) { bFixedLen = bSet; }
void SetFieldSeps( const String& rStr ) { aFieldSeps = rStr; }
void SetMergeSeps( BOOL bSet ) { bMergeFieldSeps = bSet; }
+ void SetQuotedAsText(bool bSet) { bQuotedFieldAsText = bSet; }
void SetTextSep( sal_Unicode c ) { cTextSep = c; }
void SetStartRow( long nRow) { nStartRow= nRow; }