Re: [api-dev] multiple-inheritance interafces and method name clashes

2005-10-20 Thread Stephan Bergmann
Rony G. Flatscher wrote: ... cut ... Just curious: how do you write down in ooRexx calls to method bar on an object that implements the two interfaces module m1 { interface XFoo { void bar(); }; }; module m2 { interface XFoo { void baz(); }; }; Hmm, good question. Could you please

Re: [api-dev] Returnvalues from Macros

2005-10-20 Thread Mathias Bauer
Alexander Peters wrote: Hello! I use OLE to connect to OpenOffice.org Writer and want to get Returncodes from Macros which i execute with a dispatcher. How can i make this? Or is there an other way to execute macros to get a returnvalue? Any Codesnip in any language will help me. A

[api-dev] Pure Virtual Method called, Aborted Error

2005-10-20 Thread Rahul Kulkarni
Hello All, I get the error Pure Virtual Method called, Aborted when I execute my component using XMain run() method by using uno executable. This occurs when I make the service single instance by using a static variable inside the code. Any ideas, pointers about it. What could be the reason.