diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-04-11 14:22:22 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-04-11 14:24:08 +0200 |
commit | f3242bc0f000ce8bef969e05dc0fce1c4927f1e9 (patch) | |
tree | 3a330b9dcd05ceae7347849fd192ea917e071eaa /odk/examples/cpp | |
parent | 14a2413530cd856eb9ce280187d1f32acd358d1d (diff) |
Missing rtl:: namespace
Change-Id: Ifc9eda5846558c449c40442016a243872eae2962
Diffstat (limited to 'odk/examples/cpp')
-rw-r--r-- | odk/examples/cpp/complextoolbarcontrols/MyProtocolHandler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/odk/examples/cpp/complextoolbarcontrols/MyProtocolHandler.h b/odk/examples/cpp/complextoolbarcontrols/MyProtocolHandler.h index dfcd295ac516..98b26e127606 100644 --- a/odk/examples/cpp/complextoolbarcontrols/MyProtocolHandler.h +++ b/odk/examples/cpp/complextoolbarcontrols/MyProtocolHandler.h @@ -142,7 +142,7 @@ class WriterDispatch : public BaseDispatch public: WriterDispatch( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > &rxContext, const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& xFrame ) - : BaseDispatch( rxContext, xFrame, OUString( "com.sun.star.text.TextDocument" ) ) + : BaseDispatch( rxContext, xFrame, rtl::OUString( "com.sun.star.text.TextDocument" ) ) {} }; @@ -151,7 +151,7 @@ class CalcDispatch : public BaseDispatch public: CalcDispatch( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > &rxContext, const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& xFrame ) - : BaseDispatch( rxContext, xFrame, OUString( "com.sun.star.sheet.SpreadSheetDocument" ) ) + : BaseDispatch( rxContext, xFrame, rtl::OUString( "com.sun.star.sheet.SpreadSheetDocument" ) ) {} }; |