diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-06-06 12:25:34 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-06-06 12:25:34 +0000 |
commit | 7970fd402200f7e0d15be93041bf680f9a5c2fde (patch) | |
tree | 0864c9cafb849a202508bfdf63f63a4a10b60648 /connectivity/source/inc/file | |
parent | 747d1e733c622b405c1ed45f0a695393849049a5 (diff) |
INTEGRATION: CWS dba30c (1.23.10); FILE MERGED
2008/05/06 08:14:06 oj 1.23.10.1: #i88577# check for visual foxpro and accept text encoding when set
Diffstat (limited to 'connectivity/source/inc/file')
-rw-r--r-- | connectivity/source/inc/file/FConnection.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/connectivity/source/inc/file/FConnection.hxx b/connectivity/source/inc/file/FConnection.hxx index 264e0ab28add..3da5805b118c 100644 --- a/connectivity/source/inc/file/FConnection.hxx +++ b/connectivity/source/inc/file/FConnection.hxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: FConnection.hxx,v $ - * $Revision: 1.23 $ + * $Revision: 1.24 $ * * This file is part of OpenOffice.org. * @@ -81,6 +81,7 @@ namespace connectivity sal_Bool m_bShowDeleted; sal_Bool m_bCaseSensitiveExtension; sal_Bool m_bCheckSQL92; + bool m_bDefaultTextEncoding; void throwUrlNotValid(const ::rtl::OUString & _rsUrl,const ::rtl::OUString & _rsMessage); @@ -143,6 +144,7 @@ namespace connectivity inline OFileDriver* getDriver() const { return m_pDriver; } inline sal_Bool showDeleted() const { return m_bShowDeleted; } inline sal_Bool isCheckEnabled() const { return m_bCheckSQL92; } + inline bool isTextEncodingDefaulted() const { return m_bDefaultTextEncoding; } public: struct GrantAccess |