From ac7034cbaac6eb2025c1799b14171821ca868ef1 Mon Sep 17 00:00:00 2001 From: Herbert Dürr Date: Mon, 21 Jan 2013 09:13:30 +0000 Subject: type qualifiers ignored on function return type Gcc 4.4 on our buildbot reported 657 such warnings, which represents almost 85% of all warnings it emitted for our codebase! The warnings are correct and cleaning them up improves our code quality and makes the build output more relevant. --- ucb/source/ucp/webdav/webdavresponseparser.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ucb') diff --git a/ucb/source/ucp/webdav/webdavresponseparser.cxx b/ucb/source/ucp/webdav/webdavresponseparser.cxx index df1a81d912c2..639e575622c8 100644 --- a/ucb/source/ucp/webdav/webdavresponseparser.cxx +++ b/ucb/source/ucp/webdav/webdavresponseparser.cxx @@ -180,8 +180,8 @@ namespace const ::rtl::OUString& getNamespace() const { return maNamespace; } const ::rtl::OUString& getName() const { return maName; } - const WebDAVNamespace getWebDAVNamespace() const { return maWebDAVNamespace; } - const WebDAVName getWebDAVName() const { return maWebDAVName; } + WebDAVNamespace getWebDAVNamespace() const { return maWebDAVNamespace; } + WebDAVName getWebDAVName() const { return maWebDAVName; } }; void WebDAVContext::parseForNamespaceTokens(const uno::Reference< xml::sax::XAttributeList >& xAttribs) -- cgit