summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/webdav-neon
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-08-09 17:13:59 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-08-09 18:02:08 +0200
commite6c036915b75cd5c81323e337a8604701b869052 (patch)
tree75eb436ed26dcffbbc9659206b35436bc13fe6f9 /ucb/source/ucp/webdav-neon
parentb8c87fa294678180191588134b9e9c7993a659fc (diff)
Fix typos
Change-Id: Ie63c7b2d8bf9579b7b41d7bae515818c8d5706dc Reviewed-on: https://gerrit.libreoffice.org/77217 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'ucb/source/ucp/webdav-neon')
-rw-r--r--ucb/source/ucp/webdav-neon/ContentProperties.hxx2
-rw-r--r--ucb/source/ucp/webdav-neon/DAVResourceAccess.cxx2
-rw-r--r--ucb/source/ucp/webdav-neon/webdavcontent.cxx4
3 files changed, 4 insertions, 4 deletions
diff --git a/ucb/source/ucp/webdav-neon/ContentProperties.hxx b/ucb/source/ucp/webdav-neon/ContentProperties.hxx
index 49996c9f53e4..2fa1cc2ba24f 100644
--- a/ucb/source/ucp/webdav-neon/ContentProperties.hxx
+++ b/ucb/source/ucp/webdav-neon/ContentProperties.hxx
@@ -110,7 +110,7 @@ public:
std::vector< OUString > & resources );
// return true, if all properties contained in rProps are contained in
- // this ContentProperties instance. Otherwiese, false will be returned.
+ // this ContentProperties instance. Otherwise, false will be returned.
// rNamesNotContained contain the missing names.
bool containsAllNames(
const css::uno::Sequence< css::beans::Property >& rProps,
diff --git a/ucb/source/ucp/webdav-neon/DAVResourceAccess.cxx b/ucb/source/ucp/webdav-neon/DAVResourceAccess.cxx
index 905c78518a5f..fa2a36483891 100644
--- a/ucb/source/ucp/webdav-neon/DAVResourceAccess.cxx
+++ b/ucb/source/ucp/webdav-neon/DAVResourceAccess.cxx
@@ -1115,7 +1115,7 @@ bool DAVResourceAccess::detectRedirectCycle(
// Check for maximum number of redirections
// according to <https://tools.ietf.org/html/rfc7231#section-6.4>.
- // A pratical limit may be 5, due to earlier specifications:
+ // A practical limit may be 5, due to earlier specifications:
// <https://tools.ietf.org/html/rfc2068#section-10.3>
// it can be raised keeping in mind the added net activity.
if( static_cast< size_t >( g_nRedirectLimit ) <= m_aRedirectURIs.size() )
diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.cxx b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
index e9f5e4a761a2..92534b376201 100644
--- a/ucb/source/ucp/webdav-neon/webdavcontent.cxx
+++ b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
@@ -241,7 +241,7 @@ Content::Content(
}
-// ctr for content on an non-existing webdav resource
+// ctr for content on a non-existing webdav resource
Content::Content(
const uno::Reference< uno::XComponentContext >& rxContext,
ContentProvider* pProvider,
@@ -1977,7 +1977,7 @@ uno::Sequence< uno::Any > Content::setPropertyValues(
for ( const auto& rProppatchValue : aProppatchValues )
{
aEvent.PropertyName = rProppatchValue.name;
- aEvent.OldValue = uno::Any(); // @@@ to expensive to obtain!
+ aEvent.OldValue = uno::Any(); // @@@ too expensive to obtain!
aEvent.NewValue = rProppatchValue.value;
aChanges.getArray()[ nChanged ] = aEvent;