diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-03-05 20:48:50 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-03-06 09:43:38 +0000 |
commit | 3f6f21e6e7721bbca13c1e632c0247939538ba82 (patch) | |
tree | e2679ab8218fc1d405ae22c16da3780d55ce411a /sc/inc/textuno.hxx | |
parent | 4cd7b4ab8aeaf61f5e30e4b63e039b7bb9519e85 (diff) |
V801: Decreased performance
Change-Id: Ia58f19c7121dc8a835436bcefc7fd1e3789407db
Diffstat (limited to 'sc/inc/textuno.hxx')
-rw-r--r-- | sc/inc/textuno.hxx | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/sc/inc/textuno.hxx b/sc/inc/textuno.hxx index 303abfc2b136..cfa4d3a07804 100644 --- a/sc/inc/textuno.hxx +++ b/sc/inc/textuno.hxx @@ -94,8 +94,7 @@ public: throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; static const com::sun::star::uno::Sequence<sal_Int8>& getUnoTunnelId(); - static rtl::Reference<ScHeaderFooterContentObj> getImplementation( const com::sun::star::uno::Reference< - com::sun::star::sheet::XHeaderFooterContent> xObj ); + static rtl::Reference<ScHeaderFooterContentObj> getImplementation(const css::uno::Reference<css::sheet::XHeaderFooterContent>& rObj); // XServiceInfo virtual OUString SAL_CALL getImplementationName() @@ -264,8 +263,7 @@ public: throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; static const com::sun::star::uno::Sequence<sal_Int8>& getUnoTunnelId(); - static ScCellTextCursor* getImplementation( const com::sun::star::uno::Reference< - com::sun::star::uno::XInterface> xObj ); + static ScCellTextCursor* getImplementation(const css::uno::Reference< css::uno::XInterface>& rObj); }; class ScHeaderFooterTextCursor : public SvxUnoTextCursor @@ -292,8 +290,7 @@ public: throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; static const com::sun::star::uno::Sequence<sal_Int8>& getUnoTunnelId(); - static ScHeaderFooterTextCursor* getImplementation( const com::sun::star::uno::Reference< - com::sun::star::uno::XInterface> xObj ); + static ScHeaderFooterTextCursor* getImplementation(const css::uno::Reference<css::uno::XInterface>& rObj); }; class ScDrawTextCursor : public SvxUnoTextCursor @@ -322,8 +319,7 @@ public: throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; static const com::sun::star::uno::Sequence<sal_Int8>& getUnoTunnelId(); - static ScDrawTextCursor* getImplementation( const com::sun::star::uno::Reference< - com::sun::star::uno::XInterface> xObj ); + static ScDrawTextCursor* getImplementation(const css::uno::Reference<css::uno::XInterface>& rObj); }; // ScAnnotationTextCursor isn't needed anymore - SvxUnoTextCursor is used instead |