summaryrefslogtreecommitdiff
path: root/basic/source/inc/errobject.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-20 09:21:24 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-07-20 09:39:36 +0000
commitb4ee16da65eab7b50b29dcd42dc0f0be6b97b174 (patch)
tree81e7d930894f13718f9a36772e55034d660e0cc1 /basic/source/inc/errobject.hxx
parentc02e79874951ba86d926186e284612806d8bc0a3 (diff)
com::sun::star->css in basic
Change-Id: I637fd7aedeb97b7dca22521474a54a1d4274f212 Reviewed-on: https://gerrit.libreoffice.org/17206 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'basic/source/inc/errobject.hxx')
-rw-r--r--basic/source/inc/errobject.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/basic/source/inc/errobject.hxx b/basic/source/inc/errobject.hxx
index e2c354e78e0a..88cef685e8d2 100644
--- a/basic/source/inc/errobject.hxx
+++ b/basic/source/inc/errobject.hxx
@@ -26,17 +26,17 @@
class SbxErrObject : public SbUnoObject
{
class ErrObject* m_pErrObject;
- com::sun::star::uno::Reference< ooo::vba::XErrObject > m_xErr;
+ css::uno::Reference< ooo::vba::XErrObject > m_xErr;
- SbxErrObject( const OUString& aName_, const com::sun::star::uno::Any& aUnoObj_ );
+ SbxErrObject( const OUString& aName_, const css::uno::Any& aUnoObj_ );
virtual ~SbxErrObject();
public:
static SbxVariableRef getErrObject();
- static com::sun::star::uno::Reference< ooo::vba::XErrObject > getUnoErrObject();
+ static css::uno::Reference< ooo::vba::XErrObject > getUnoErrObject();
void setNumberAndDescription( ::sal_Int32 _number, const OUString& _description )
- throw (com::sun::star::uno::RuntimeException);
+ throw (css::uno::RuntimeException);
};
#endif