Are sc/source/ui/vba/vbaapplications.cxx and vbahelper/source/vbahelper/vbahelper.cxx ONLY used for MS VBA compatibility, or does it also affect StarBasic etc?

I have identified that the vbahelper function getCurrentDoc() is broken, causing bug 71248, and suggested a band-aid solution for it in the comments.  However, I don't know the larger implications of replacing getCurrentDoc with getThisExcelDoc.  In practice, THIS and CURRENT are likely the same thing, but perhaps the current implementation is necessary and working for someone...

I'm still going to try to figure out how to properly fix "getCurrentDoc" but so far I don't really understand what it is doing.  If someone who actually knows how to program and submit patches could take over from this point, that would be great.

suggested Band-aid fix:
uno::Reference< frame::XModel >  getCurrentExcelDoc( const uno::Reference< uno::XComponentContext >& xContext ) throw (uno::RuntimeException)
{
    return
getThisExcelDoc( xContext );
}

Thanks,
Justin
https://bugs.freedesktop.org/show_bug.cgi?id=71248

_______________________________________________
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice

Reply via email to