[Libreoffice-commits] core.git: oovbaapi/ooo
Stephan Bergmann
sbergman at redhat.com
Wed Sep 4 08:45:21 PDT 2013
oovbaapi/ooo/vba/excel/XAxis.idl | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
New commits:
commit 456539a6faa79e4ec7f9f553e215cc2bc501ed62
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Wed Sep 4 17:37:35 2013 +0200
Remove effectively dead raises specification
Looks like idlc ignores the lone (due to the preceeding ";") raises
specification, for whatever buggy reason. XAxis.idl had been like this since
the inception, and the C++ implementation of getAxisGroup in
sc/source/ui/vba/vbaaxis.{cxx,hxx} had also failed to list BasicErrorException
since its inception (likely because the function signatures were copied directly
from the generated .hdl file, which of course also lacks BasicErrorException;
and also does not really need it given the function definition just returns a
member variable), so keep the status quo and clean up the .idl file.
Change-Id: Ib4ffddb6ec867ca302cc595915cae17099734ddf
diff --git a/oovbaapi/ooo/vba/excel/XAxis.idl b/oovbaapi/ooo/vba/excel/XAxis.idl
index 52ab5ab..ed24df2 100644
--- a/oovbaapi/ooo/vba/excel/XAxis.idl
+++ b/oovbaapi/ooo/vba/excel/XAxis.idl
@@ -118,8 +118,7 @@ interface XAxis
boolean getMinimumScaleIsAuto()
raises(com::sun::star::script::BasicErrorException);
- long getAxisGroup();//
- raises(com::sun::star::script::BasicErrorException);
+ long getAxisGroup();
void setScaleType([in] long ScaleType)
raises(com::sun::star::script::BasicErrorException);
More information about the Libreoffice-commits
mailing list