summaryrefslogtreecommitdiff
path: root/stoc
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 23:07:00 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 23:07:00 +0000
commit31e01a8d6c79d8bb78bfeff985f17d86dddbb0de (patch)
tree0dbaf73d4a1d69d252c5312fe4c46ae0076735d1 /stoc
parentcffbc450e722703e66de2cff961276091fe80b06 (diff)
INTEGRATION: CWS warnings01 (1.4.8); FILE MERGED
2005/11/09 18:49:42 pl 1.4.8.1: #i53898# removed warnings
Diffstat (limited to 'stoc')
-rw-r--r--stoc/source/uriproc/UriReference.cxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/stoc/source/uriproc/UriReference.cxx b/stoc/source/uriproc/UriReference.cxx
index 52dd10d687f5..7772879e54de 100644
--- a/stoc/source/uriproc/UriReference.cxx
+++ b/stoc/source/uriproc/UriReference.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: UriReference.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 08:16:16 $
+ * last change: $Author: hr $ $Date: 2006-06-20 00:07:00 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -46,23 +46,23 @@ namespace css = com::sun::star;
using stoc::uriproc::UriReference;
UriReference::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_scheme(scheme),
m_authority(authority),
m_path(path),
m_query(query),
- m_isHierarchical(isHierarchical),
- m_hasAuthority(hasAuthority),
- m_hasQuery(hasQuery),
+ m_isHierarchical(bIsHierarchical),
+ m_hasAuthority(bHasAuthority),
+ m_hasQuery(bHasQuery),
m_hasFragment(false)
{
- OSL_ASSERT(scheme.getLength() != 0 || isHierarchical);
- OSL_ASSERT(!hasAuthority || isHierarchical);
- OSL_ASSERT(authority.getLength() == 0 || hasAuthority);
- OSL_ASSERT(!hasQuery || isHierarchical);
- OSL_ASSERT(query.getLength() == 0 || hasQuery);
+ OSL_ASSERT(scheme.getLength() != 0 || bIsHierarchical);
+ OSL_ASSERT(!bHasAuthority || bIsHierarchical);
+ OSL_ASSERT(authority.getLength() == 0 || bHasAuthority);
+ OSL_ASSERT(!bHasQuery || bIsHierarchical);
+ OSL_ASSERT(query.getLength() == 0 || bHasQuery);
}
UriReference::~UriReference() {}