summaryrefslogtreecommitdiff
path: root/pyuno
diff options
context:
space:
mode:
authorJörg Budischewski <jbu@openoffice.org>2003-05-24 22:29:24 +0000
committerJörg Budischewski <jbu@openoffice.org>2003-05-24 22:29:24 +0000
commit796a2d2dd1c559e49f4860c8be486848a8c2bb92 (patch)
treec8ad1ba6e221d7961d9644cd7680c0a460eabbd0 /pyuno
parent4640b548a7ceda0016c465ee4e15086a54defdb6 (diff)
#i12504# added getAnyClass
Diffstat (limited to 'pyuno')
-rw-r--r--pyuno/source/module/pyuno_type.cxx9
1 files changed, 7 insertions, 2 deletions
diff --git a/pyuno/source/module/pyuno_type.cxx b/pyuno/source/module/pyuno_type.cxx
index e41e527bb3f4..0e55eef5f1a3 100644
--- a/pyuno/source/module/pyuno_type.cxx
+++ b/pyuno/source/module/pyuno_type.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: pyuno_type.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: jbu $ $Date: 2003-05-24 11:01:50 $
+ * last change: $Author: jbu $ $Date: 2003-05-24 23:29:24 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -172,6 +172,11 @@ PyRef getByteSequenceClass( const Runtime & r )
return getClass( r , "ByteSequence" );
}
+PyRef getAnyClass( const Runtime & r )
+{
+ return getClass( r , "Any" );
+}
+
sal_Unicode PyChar2Unicode( PyObject *obj, const Runtime & r ) throw ( RuntimeException )
{