summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2016-10-16 20:08:47 +0200
committerJochen Nitschke <j.nitschke+logerrit@ok.de>2016-10-18 19:16:44 +0000
commitd1ea6ecda68bf65b8d90e9ea17fa0a218a92b016 (patch)
tree941e1e5650db110768d2ace19c891fec4f78fc33 /ucb
parent55bcb865ee09673af06652e507d08d13069eae86 (diff)
replace <<= with assign for <<= with rhs Any
found by deleting specialization of '<<=' template Change-Id: I253f15177ab20fd3ef9baf4158da8c662cb47e6c Reviewed-on: https://gerrit.libreoffice.org/29956 Reviewed-by: Jochen Nitschke <j.nitschke+logerrit@ok.de> Tested-by: Jochen Nitschke <j.nitschke+logerrit@ok.de>
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/core/ucb.cxx2
-rw-r--r--ucb/source/ucp/file/shell.cxx2
-rw-r--r--ucb/source/ucp/gio/gio_content.cxx2
-rw-r--r--ucb/source/ucp/webdav-neon/webdavcontent.cxx2
4 files changed, 4 insertions, 4 deletions
diff --git a/ucb/source/core/ucb.cxx b/ucb/source/core/ucb.cxx
index 5f9f16b346be..4e00aa4a810c 100644
--- a/ucb/source/core/ucb.cxx
+++ b/ucb/source/core/ucb.cxx
@@ -672,7 +672,7 @@ Any SAL_CALL UniversalContentBroker::execute(
Environment );
// Unreachable
}
- aRet <<= checkIn( aCheckinArg, Environment );
+ aRet = checkIn( aCheckinArg, Environment );
}
else
{
diff --git a/ucb/source/ucp/file/shell.cxx b/ucb/source/ucp/file/shell.cxx
index 029459eccf5c..547a886ab061 100644
--- a/ucb/source/ucp/file/shell.cxx
+++ b/ucb/source/ucp/file/shell.cxx
@@ -814,7 +814,7 @@ shell::setv( const OUString& aUnqPath,
seqChanged[ propChanged ].PropertyName = values[i].Name;
seqChanged[ propChanged ].PropertyHandle = -1;
seqChanged[ propChanged ].Further = false;
- seqChanged[ propChanged ].OldValue <<= aAny;
+ seqChanged[ propChanged ].OldValue = aAny;
seqChanged[ propChanged++ ].NewValue = values[i].Value;
it1->setValue( values[i].Value ); // Put the new value into the local cash
diff --git a/ucb/source/ucp/gio/gio_content.cxx b/ucb/source/ucp/gio/gio_content.cxx
index 16be9c03045b..3a6e231939f1 100644
--- a/ucb/source/ucp/gio/gio_content.cxx
+++ b/ucb/source/ucp/gio/gio_content.cxx
@@ -749,7 +749,7 @@ uno::Sequence< uno::Any > Content::setPropertyValues(
if ((bOk = doSetFileInfo(pNewInfo)))
{
for (sal_Int32 i = 0; i < nChanged; ++i)
- aRet[ i ] <<= getBadArgExcept();
+ aRet[ i ] = getBadArgExcept();
}
}
diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.cxx b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
index cd32145c1206..53d27a7d67c3 100644
--- a/ucb/source/ucp/webdav-neon/webdavcontent.cxx
+++ b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
@@ -2167,7 +2167,7 @@ uno::Sequence< uno::Any > Content::setPropertyValues(
aNewTitle.clear();
// Set error .
- aRet[ nTitlePos ] <<= MapDAVException( e, true );
+ aRet[ nTitlePos ] = MapDAVException( e, true );
}
}