diff options
author | David Tardon <dtardon@redhat.com> | 2011-06-01 18:00:41 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-06-17 16:41:34 +0200 |
commit | e5a758f0d8590145cfe5878eabef28b0bc75942a (patch) | |
tree | 545a1779f96c7ec075a9831e6424918d60f0904c /scripting/source | |
parent | 93ae25ae902848a0ce0f8def9a79a2ce705682fd (diff) |
the ifaces should be in namespace ooo::vba
Diffstat (limited to 'scripting/source')
-rw-r--r-- | scripting/source/vbaevents/vbamsformreturntypes.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripting/source/vbaevents/vbamsformreturntypes.hxx b/scripting/source/vbaevents/vbamsformreturntypes.hxx index 82e6ddce8ff4..84deaedd5d14 100644 --- a/scripting/source/vbaevents/vbamsformreturntypes.hxx +++ b/scripting/source/vbaevents/vbamsformreturntypes.hxx @@ -31,11 +31,11 @@ #define VBA_MSFORM_RETURNTYPES_HXX #include <cppuhelper/implbase1.hxx> -#include <msforms/XReturnBoolean.hpp> -#include <msforms/XReturnInteger.hpp> +#include <ooo/vba/msforms/XReturnBoolean.hpp> +#include <ooo/vba/msforms/XReturnInteger.hpp> -typedef ::cppu::WeakImplHelper1<msforms::XReturnBoolean> ReturnBoolean_BASE; +typedef ::cppu::WeakImplHelper1<ooo::vba::msforms::XReturnBoolean> ReturnBoolean_BASE; class SAL_DLLPUBLIC_EXPORT VbaReturnBoolean : public ReturnBoolean_BASE { @@ -54,7 +54,7 @@ public: }; -typedef ::cppu::WeakImplHelper1<msforms::XReturnInteger> ReturnInteger_BASE; +typedef ::cppu::WeakImplHelper1<ooo::vba::msforms::XReturnInteger> ReturnInteger_BASE; class SAL_DLLPUBLIC_EXPORT VbaReturnInteger : public ReturnInteger_BASE { |