diff options
author | Jörg Budischewski <jbu@openoffice.org> | 2003-05-24 22:29:24 +0000 |
---|---|---|
committer | Jörg Budischewski <jbu@openoffice.org> | 2003-05-24 22:29:24 +0000 |
commit | 796a2d2dd1c559e49f4860c8be486848a8c2bb92 (patch) | |
tree | c8ad1ba6e221d7961d9644cd7680c0a460eabbd0 /pyuno | |
parent | 4640b548a7ceda0016c465ee4e15086a54defdb6 (diff) |
#i12504# added getAnyClass
Diffstat (limited to 'pyuno')
-rw-r--r-- | pyuno/source/module/pyuno_type.cxx | 9 |
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 ) { |