summaryrefslogtreecommitdiffstats
path: root/dbaccess
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 02:15:01 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 02:15:01 +0000
commitec88f4118c2626c93355228989432ba248c8868d (patch)
tree0c33a4573450a83247cf4a80b4843f1e1958f3ce /dbaccess
parentINTEGRATION: CWS warnings01 (1.15.74); FILE MERGED (diff)
downloadcore-ec88f4118c2626c93355228989432ba248c8868d.tar.gz
core-ec88f4118c2626c93355228989432ba248c8868d.zip
INTEGRATION: CWS warnings01 (1.7.48); FILE MERGED
2006/05/29 11:19:12 sb 1.7.48.3: #i53898# Made code warning-free and/or compile at all after resync to SRC680m170. 2006/05/23 23:55:26 sb 1.7.48.2: RESYNC: (1.7-1.8); FILE MERGED 2006/03/24 15:36:17 fs 1.7.48.1: #i57457# warning-free code (unxlngi6/.pro + unxsoli4.pro)
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/ui/inc/TypeInfo.hxx25
1 files changed, 11 insertions, 14 deletions
diff --git a/dbaccess/source/ui/inc/TypeInfo.hxx b/dbaccess/source/ui/inc/TypeInfo.hxx
index 8090010bad0e..29cbcd4c2a1c 100644
--- a/dbaccess/source/ui/inc/TypeInfo.hxx
+++ b/dbaccess/source/ui/inc/TypeInfo.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: TypeInfo.hxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: hr $ $Date: 2006-04-19 13:21:10 $
+ * last change: $Author: hr $ $Date: 2006-06-20 03:15:01 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -36,8 +36,8 @@
#define DBAUI_TYPEINFO_HXX
-#ifndef _RTL_USTRING_
-#include <rtl/ustring>
+#ifndef _RTL_USTRING_HXX_
+#include <rtl/ustring.hxx>
#endif
#ifndef _COM_SUN_STAR_SDBC_DATATYPE_HPP_
#include <com/sun/star/sdbc/DataType.hpp>
@@ -100,7 +100,6 @@ const sal_uInt16 TYPE_OTHER = 30;
::rtl::OUString aLocalTypeName;
sal_Int32 nPrecision; // Laenge des Types
- sal_Int32 nNumPrecRadix; // indicating the radix, which is usually 2 or 10
sal_Int32 nType; // Datenbanktyp
sal_Int16 nMaximumScale; // Nachkommastellen
@@ -113,21 +112,19 @@ const sal_uInt16 TYPE_OTHER = 30;
bAutoIncrement : 1, // Ist es ein automatisch incrementierendes Feld
bNullable : 1, // Kann das Feld NULL annehmen
bCaseSensitive : 1, // Ist der Type Casesensitive
- bUnsigned : 1, // Ist der Type Unsigned
- bEmpty_1 : 1, // for later use
- bEmpty_2 : 1;
+ bUnsigned : 1; // Ist der Type Unsigned
OTypeInfo()
- :bCurrency(sal_False)
+ :nPrecision(0)
+ ,nType(::com::sun::star::sdbc::DataType::OTHER)
+ ,nMaximumScale(0)
+ ,nMinimumScale(0)
+ ,nSearchType(::com::sun::star::sdbc::ColumnSearch::FULL)
+ ,bCurrency(sal_False)
,bAutoIncrement(sal_False)
,bNullable(sal_True)
,bCaseSensitive(sal_False)
,bUnsigned(sal_False)
- ,nMaximumScale(0)
- ,nMinimumScale(0)
- ,nType(::com::sun::star::sdbc::DataType::OTHER)
- ,nPrecision(0)
- ,nSearchType(::com::sun::star::sdbc::ColumnSearch::FULL)
{}
sal_Bool operator == (const OTypeInfo& lh) const { return lh.nType == nType; }
sal_Bool operator != (const OTypeInfo& lh) const { return lh.nType != nType; }