summaryrefslogtreecommitdiff
path: root/basic/source/classes/propacc.cxx
diff options
context:
space:
mode:
authorAndreas Bregas <ab@openoffice.org>2002-04-29 10:26:00 +0000
committerAndreas Bregas <ab@openoffice.org>2002-04-29 10:26:00 +0000
commit259b8d43bff9d0589c2a43b731f5e7b882d80689 (patch)
tree51f81245c85c43ecc44d2b0dd76c977c5868c248 /basic/source/classes/propacc.cxx
parentccfe74e6a3ef63148a7697af73c35139c5972411 (diff)
#94560# New sbxToUnoValue() function
Diffstat (limited to 'basic/source/classes/propacc.cxx')
-rw-r--r--basic/source/classes/propacc.cxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/basic/source/classes/propacc.cxx b/basic/source/classes/propacc.cxx
index 356a615662ff..f6878a7a7f5d 100644
--- a/basic/source/classes/propacc.cxx
+++ b/basic/source/classes/propacc.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: propacc.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: hjs $ $Date: 2001-09-12 11:55:40 $
+ * last change: $Author: ab $ $Date: 2002-04-29 11:26:00 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -78,8 +78,7 @@ using namespace rtl;
//========================================================================
// Deklaration Konvertierung von Sbx nach Uno mit bekannter Zielklasse
-Any sbxToUnoValue( SbxVariable* pVar, const Reference< XIdlClass >& xIdlTargetClass );
-Reference<XIdlClass> TypeToIdlClass( const Type& rType );
+Any sbxToUnoValue( SbxVariable* pVar, const Type& rType, Property* pUnoProperty = NULL );
//========================================================================
@@ -427,7 +426,7 @@ void RTL_Impl_CreatePropertySet( StarBASIC* pBasic, SbxArray& rPar, BOOL bWrite
{
// PropertyValues setzen
Any aArgAsAny = sbxToUnoValue( rPar.Get(1),
- TypeToIdlClass( getCppuType( (Sequence<PropertyValue>*)0 ) ) );
+ getCppuType( (Sequence<PropertyValue>*)0 ) );
Sequence<PropertyValue> *pArg =
(Sequence<PropertyValue>*) aArgAsAny.getValue();
Reference< XPropertyAccess > xPropAcc = Reference< XPropertyAccess >::query( xInterface );