summaryrefslogtreecommitdiff
path: root/idl
diff options
context:
space:
mode:
authorMathias Bauer <mba@openoffice.org>2002-03-28 15:01:23 +0000
committerMathias Bauer <mba@openoffice.org>2002-03-28 15:01:23 +0000
commit04fc83656bab1c71a1cb87a0f2ad4118b2fe4354 (patch)
tree1bce8484a670588b46c6d624de6365faac9be000 /idl
parenta2cf5506db5d16341bc5b4e9165c35a316a60115 (diff)
#98396#: get UnoName from API names
Diffstat (limited to 'idl')
-rw-r--r--idl/source/objects/slot.cxx13
1 files changed, 7 insertions, 6 deletions
diff --git a/idl/source/objects/slot.cxx b/idl/source/objects/slot.cxx
index 3f6fc3a2015f..9d013f63c98d 100644
--- a/idl/source/objects/slot.cxx
+++ b/idl/source/objects/slot.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: slot.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:30:41 $
+ * last change: $Author: mba $ $Date: 2002-03-28 16:01:23 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1530,14 +1530,15 @@ void SvMetaSlot::WriteSlot( const ByteString & rShellName, USHORT nCount,
rOutStm << '0';
}
- if ( GetUnoName().Len() )
+// if ( GetUnoName().Len() )
{
rOutStm << ",\"";
- rOutStm << GetUnoName().GetBuffer();
+ rOutStm << GetMangleName( FALSE ).GetBuffer();
+ //rOutStm << GetUnoName().GetBuffer();
rOutStm << "\"";
}
- else
- rOutStm << ", 0";
+// else
+// rOutStm << ", 0";
rOutStm << " )," << endl;
}