diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-03-24 15:44:19 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-03-24 15:44:19 +0000 |
commit | bb607d6aa3e65f2e7d46debec9bf7946286aa64e (patch) | |
tree | 7b0b849443055dbbe60a3a54ed7901ab550d3a29 /vbahelper/inc | |
parent | 49b62e4d12fdaff40ec1c4865166faaa8ba1e7a7 (diff) |
these can be const
Diffstat (limited to 'vbahelper/inc')
-rwxr-xr-x | vbahelper/inc/vbahelper/vbahelper.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vbahelper/inc/vbahelper/vbahelper.hxx b/vbahelper/inc/vbahelper/vbahelper.hxx index b3307ea8214e..a55cd790197d 100755 --- a/vbahelper/inc/vbahelper/vbahelper.hxx +++ b/vbahelper/inc/vbahelper/vbahelper.hxx @@ -235,7 +235,7 @@ public: static void exception( int err, const rtl::OUString& additionalArgument ) throw( css::script::BasicErrorException ); - static void exception( css::uno::Exception& ex ) throw( css::script::BasicErrorException ); + static void exception( const css::uno::Exception& ex ) throw( css::script::BasicErrorException ); }; class VBAHELPER_DLLPUBLIC VBADispatchListener : public cppu::WeakImplHelper1< css::frame::XDispatchResultListener > |