summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2007-11-27 11:10:30 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2007-11-27 11:10:30 +0000
commit0f3b0dd4277f185786eb2f480008b1ff31881a3e (patch)
tree9c12815ba6e5b4bc84af0beaa959e7bd8596fd7c /dbaccess/source/ui
parent0beb341fa00333494edbd0aae88bef7a7251512f (diff)
INTEGRATION: CWS dba24lms (1.2.6); FILE MERGED
2007/11/12 15:20:47 oj 1.2.6.1: #i11746# currency oracle
Diffstat (limited to 'dbaccess/source/ui')
-rw-r--r--dbaccess/source/ui/dlg/advancedsettings.cxx7
-rw-r--r--dbaccess/source/ui/dlg/advancedsettings.hxx5
2 files changed, 8 insertions, 4 deletions
diff --git a/dbaccess/source/ui/dlg/advancedsettings.cxx b/dbaccess/source/ui/dlg/advancedsettings.cxx
index 2529a556d5c4..d5cf850b9e2d 100644
--- a/dbaccess/source/ui/dlg/advancedsettings.cxx
+++ b/dbaccess/source/ui/dlg/advancedsettings.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: advancedsettings.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: hr $ $Date: 2007-11-01 15:08:56 $
+ * last change: $Author: ihi $ $Date: 2007-11-27 12:09:51 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -101,6 +101,7 @@ namespace dbaui
,m_pIndexAppendix( NULL )
,m_pDosLineEnds( NULL )
,m_pCheckRequiredFields( NULL )
+ ,m_pIgnoreCurrency(NULL)
,m_pBooleanComparisonModeLabel( NULL )
,m_pBooleanComparisonMode( NULL )
,m_aControlDependencies()
@@ -184,6 +185,7 @@ namespace dbaui
DELETEZ( m_pIndexAppendix );
DELETEZ( m_pDosLineEnds );
DELETEZ( m_pCheckRequiredFields );
+ DELETEZ( m_pIgnoreCurrency );
DELETEZ( m_pBooleanComparisonModeLabel );
DELETEZ( m_pBooleanComparisonMode );
}
@@ -207,6 +209,7 @@ namespace dbaui
{ &m_pIndexAppendix, CB_IGNOREINDEXAPPENDIX, DSID_INDEXAPPENDIX, false },
{ &m_pDosLineEnds, CB_DOSLINEENDS, DSID_DOSLINEENDS, false },
{ &m_pCheckRequiredFields, CB_CHECK_REQUIRED, DSID_CHECK_REQUIRED_FIELDS, false },
+ { &m_pIgnoreCurrency, CB_IGNORECURRENCY, DSID_IGNORECURRENCY, false },
{ NULL, 0, 0, false }
};
diff --git a/dbaccess/source/ui/dlg/advancedsettings.hxx b/dbaccess/source/ui/dlg/advancedsettings.hxx
index 7c2ada589002..6302e672830b 100644
--- a/dbaccess/source/ui/dlg/advancedsettings.hxx
+++ b/dbaccess/source/ui/dlg/advancedsettings.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: advancedsettings.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: hr $ $Date: 2007-11-01 15:09:28 $
+ * last change: $Author: ihi $ $Date: 2007-11-27 12:10:30 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -77,6 +77,7 @@ namespace dbaui
CheckBox* m_pIndexAppendix;
CheckBox* m_pDosLineEnds;
CheckBox* m_pCheckRequiredFields;
+ CheckBox* m_pIgnoreCurrency;
FixedText* m_pBooleanComparisonModeLabel;
ListBox* m_pBooleanComparisonMode;