diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 23:07:13 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 23:07:13 +0000 |
commit | ee243225bfc850e69294dd91ffc0f40a356fd376 (patch) | |
tree | be990713d3196bbd27c086f3a77e4d14784747ea /stoc/source/uriproc | |
parent | 7ebe88a1c37dd5dabaa815afd4328a10f5ac1a26 (diff) |
INTEGRATION: CWS warnings01 (1.3.70); FILE MERGED
2005/11/09 18:49:43 pl 1.3.70.3: #i53898# removed warnings
2005/09/22 20:01:15 sb 1.3.70.2: RESYNC: (1.3-1.4); FILE MERGED
2005/09/19 15:24:05 sb 1.3.70.1: #i53898# Made code warning-free.
Diffstat (limited to 'stoc/source/uriproc')
-rw-r--r-- | stoc/source/uriproc/UriReferenceFactory.cxx | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/stoc/source/uriproc/UriReferenceFactory.cxx b/stoc/source/uriproc/UriReferenceFactory.cxx index 3fb207827..010f4f22c 100644 --- a/stoc/source/uriproc/UriReferenceFactory.cxx +++ b/stoc/source/uriproc/UriReferenceFactory.cxx @@ -4,9 +4,9 @@ * * $RCSfile: UriReferenceFactory.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: rt $ $Date: 2005-09-08 08:16:52 $ + * last change: $Author: hr $ $Date: 2006-06-20 00:07:13 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -140,11 +140,11 @@ sal_Int32 parseScheme(rtl::OUString const & uriReference) { class UriReference: public cppu::WeakImplHelper1< css::uri::XUriReference > { public: UriReference( - rtl::OUString const & scheme, bool isHierarchical, bool hasAuthority, + rtl::OUString const & scheme, bool bIsHierarchical, bool bHasAuthority, rtl::OUString const & authority, rtl::OUString const & path, - bool hasQuery, rtl::OUString const & query): + bool bHasQuery, rtl::OUString const & query): m_base( - scheme, isHierarchical, hasAuthority, authority, path, hasQuery, + scheme, bIsHierarchical, bHasAuthority, authority, path, bHasQuery, query) {} @@ -548,6 +548,10 @@ css::uno::Reference< css::uri::XUriReference > Factory::makeAbsolute( case css::uri::RelativeUriExcessParentSegments_REMOVE: break; + + default: + OSL_ASSERT(false); + break; } } } |