This is the mail archive of the
kawa@sourceware.org
mailing list for the Kawa project.
Re: compilation error when apply macro in the same module
Excuse me - wrong "copy&paste"
> (import-class com.sun.star.uno.UnoRuntime) =>
> (define-namespace UnoRuntime import-class com.sun.star.uno.UnoRuntime)
(import-class com.sun.star.uno.UnoRuntime) =>
(define-namespace UnoRuntime com.sun.star.uno.UnoRuntime)
> (import-class com.sun.star.beans.PropertyValue with-array) =>
> (begin
> (define-namespace UnoRuntime import-class com.sun.star.uno.UnoRuntime)
> (define-namespace UnoRuntime[] import-class com.sun.star.uno.UnoRuntime[]))
(import-class com.sun.star.beans.PropertyValue with-array) =>
(begin
(define-namespace PropertyValue com.sun.star.beans.PropertyValue)
(define-namespace PropertyValue[] com.sun.star.beans.PropertyValue[]))
--
WBR, Yaroslav Kavenchuk.