summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorHerbert Dürr <hdu@apache.org>2013-01-21 09:13:30 +0000
committerHerbert Dürr <hdu@apache.org>2013-01-21 09:13:30 +0000
commitac7034cbaac6eb2025c1799b14171821ca868ef1 (patch)
tree628b6c6eb006dcf7aec6c4e806d53ada9f5593af /ucb
parent8fb133eecb7f9615cb2bc6d24da2646913085bbe (diff)
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.
Notes
Notes: prefer: 42782fddff98eeab5c8249918e9ba000f08c22e8
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/webdav/webdavresponseparser.cxx4
1 files changed, 2 insertions, 2 deletions
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)