summaryrefslogtreecommitdiff
path: root/oovbaapi
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-09-04 17:37:35 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-09-04 17:44:02 +0200
commit456539a6faa79e4ec7f9f553e215cc2bc501ed62 (patch)
tree759571e3444b04619162d4e42579c8da0bb32603 /oovbaapi
parent4bd28f7931a533a8ad2b0787f19ce26e6818d5b4 (diff)
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
Diffstat (limited to 'oovbaapi')
-rw-r--r--oovbaapi/ooo/vba/excel/XAxis.idl3
1 files changed, 1 insertions, 2 deletions
diff --git a/oovbaapi/ooo/vba/excel/XAxis.idl b/oovbaapi/ooo/vba/excel/XAxis.idl
index 52ab5abcd55e..ed24df29d4f2 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);