summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/OTypeInfo.hxx
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2002-07-15 11:08:31 +0000
committerOcke Janssen <oj@openoffice.org>2002-07-15 11:08:31 +0000
commitea1eb4fd465f9afccc942651037cc42c1db21bee (patch)
tree6a5ed6eada30a27b6438642ac2ec737e9be522f7 /connectivity/source/inc/OTypeInfo.hxx
parentbfb264830a6ee267a6d10b2d8db8adf1dc649ac1 (diff)
#96422# check if type is currency
Diffstat (limited to 'connectivity/source/inc/OTypeInfo.hxx')
-rw-r--r--connectivity/source/inc/OTypeInfo.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/connectivity/source/inc/OTypeInfo.hxx b/connectivity/source/inc/OTypeInfo.hxx
index dc8511a9fe97..73b2a7c11020 100644
--- a/connectivity/source/inc/OTypeInfo.hxx
+++ b/connectivity/source/inc/OTypeInfo.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: OTypeInfo.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: oj $ $Date: 2002-07-05 07:03:01 $
+ * last change: $Author: oj $ $Date: 2002-07-15 12:08:31 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -120,6 +120,8 @@ namespace connectivity
sal_Bool operator == (const OTypeInfo& lh) const { return lh.nType == nType; }
sal_Bool operator != (const OTypeInfo& lh) const { return lh.nType != nType; }
+
+ inline ::rtl::OUString getDBName() const { return aTypeName; }
};
}
#endif // _CONNECTIVITY_OTYPEINFO_HXX_