summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/package/pkguri.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/package/pkguri.cxx')
-rw-r--r--ucb/source/ucp/package/pkguri.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/ucb/source/ucp/package/pkguri.cxx b/ucb/source/ucp/package/pkguri.cxx
index 95cb0b7d8874..0458e73085a3 100644
--- a/ucb/source/ucp/package/pkguri.cxx
+++ b/ucb/source/ucp/package/pkguri.cxx
@@ -70,10 +70,10 @@ void PackageUri::init() const
m_aParam.clear();
m_aScheme.clear();
- // URI must match at least: <sheme>://<non_empty_url_to_file>
+ // URI must match at least: <scheme>://<non_empty_url_to_file>
if ( m_aUri.getLength() < PACKAGE_URL_SCHEME_LENGTH + 4 )
{
- // error, but remember that we did a init().
+ // error, but remember that we did an init().
m_aPath = "/";
return;
}
@@ -85,7 +85,7 @@ void PackageUri::init() const
||
( m_aUri[ PACKAGE_URL_SCHEME_LENGTH + 2 ] != '/' ) )
{
- // error, but remember that we did a init().
+ // error, but remember that we did an init().
m_aPath = "/";
return;
}
@@ -124,7 +124,7 @@ void PackageUri::init() const
{
// Only <scheme>:/// - Empty authority
- // error, but remember that we did a init().
+ // error, but remember that we did an init().
m_aPath = "/";
return;
}
@@ -134,7 +134,7 @@ void PackageUri::init() const
{
// Only <scheme>://// or <scheme>://<something>
- // error, but remember that we did a init().
+ // error, but remember that we did an init().
m_aPath = "/";
return;
}
@@ -185,7 +185,7 @@ void PackageUri::init() const
|| ::comphelper::OStorageHelper::PathHasSegment( m_aPath, ".." )
|| ::comphelper::OStorageHelper::PathHasSegment( m_aPath, "." ) )
{
- // error, but remember that we did a init().
+ // error, but remember that we did an init().
m_aPath = "/";
return;
}
@@ -222,7 +222,7 @@ void PackageUri::init() const
}
else
{
- // error, but remember that we did a init().
+ // error, but remember that we did an init().
m_aPath = "/";
}