summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/inc/dsmeta.hxx
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2007-11-27 11:12:42 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2007-11-27 11:12:42 +0000
commitc84522084affae30592086bb0f3672829f555f04 (patch)
treeefb0bd54e83fbd888a3a0883febb577b83d9d5cb /dbaccess/source/ui/inc/dsmeta.hxx
parent7b191940d0745e4eac61de6267acfd8ab1e23d2d (diff)
INTEGRATION: CWS dba24lms (1.2.6); FILE MERGED
2007/11/12 15:20:48 oj 1.2.6.1: #i11746# currency oracle
Diffstat (limited to 'dbaccess/source/ui/inc/dsmeta.hxx')
-rw-r--r--dbaccess/source/ui/inc/dsmeta.hxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/dbaccess/source/ui/inc/dsmeta.hxx b/dbaccess/source/ui/inc/dsmeta.hxx
index cf540748f8b2..34c323ce57f4 100644
--- a/dbaccess/source/ui/inc/dsmeta.hxx
+++ b/dbaccess/source/ui/inc/dsmeta.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: dsmeta.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: hr $ $Date: 2007-11-01 15:22:02 $
+ * last change: $Author: ihi $ $Date: 2007-11-27 12:12:42 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -115,6 +115,7 @@ namespace dbaui
bool bUseDOSLineEnds;
bool bBooleanComparisonMode;
bool bFormsCheckRequiredFields;
+ bool bIgnoreCurrency;
// Note: If you extend this list, you need to adjust the ctor (of course)
// and (maybe) the implementation of supportsAnySpecialSetting
@@ -133,6 +134,7 @@ namespace dbaui
,bUseDOSLineEnds ( true )
,bBooleanComparisonMode ( true )
,bFormsCheckRequiredFields ( true )
+ ,bIgnoreCurrency ( false )
{
}
@@ -157,7 +159,8 @@ namespace dbaui
|| ( bUseIndexDirectionKeyword == true )
|| ( bUseDOSLineEnds == true )
|| ( bBooleanComparisonMode == true )
- || ( bFormsCheckRequiredFields == true );
+ || ( bFormsCheckRequiredFields == true )
+ || ( bIgnoreCurrency == true );
}
//........................................................................