summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/ftp/ftpresultsetI.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-05 11:13:07 +0200
committerNoel Grandin <noel@peralex.com>2015-11-05 11:18:41 +0200
commitb37b7b5cd5a4b7acdee4736008f3947317dad4ce (patch)
tree7d07a383c81106ed9cdd48ddaff564ed0650c365 /ucb/source/ucp/ftp/ftpresultsetI.cxx
parentf9a6e75e21e9919a405a1964d85345a1c0634067 (diff)
use uno::Reference::set method instead of assignment
Change-Id: Id036f867e75d03d8347cc32a1011c5cdda1dcc73
Diffstat (limited to 'ucb/source/ucp/ftp/ftpresultsetI.cxx')
-rw-r--r--ucb/source/ucp/ftp/ftpresultsetI.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/ftp/ftpresultsetI.cxx b/ucb/source/ucp/ftp/ftpresultsetI.cxx
index 89e1367b04c8..74884498cf3b 100644
--- a/ucb/source/ucp/ftp/ftpresultsetI.cxx
+++ b/ucb/source/ucp/ftp/ftpresultsetI.cxx
@@ -90,7 +90,7 @@ ResultSetI::ResultSetI(const Reference<XComponentContext>& rxContext,
else
xRow->appendVoid(seqProp[i]);
}
- m_aItems[n] = Reference<XRow>(xRow.get());
+ m_aItems[n].set(xRow.get());
}
}