summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/ftp/ftpcontent.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-26 14:15:47 +0200
committerNoel Grandin <noel@peralex.com>2015-11-30 10:34:38 +0200
commitd2df03574023b379ac09b1f71cae9e3ba3ac53e2 (patch)
treeca17f45377b7b506375b510f1d1733495ea9b170 /ucb/source/ucp/ftp/ftpcontent.cxx
parentffddd4d122433329b454f676f21a2b1ce590a1a7 (diff)
loplugin:unusedfields
Change-Id: Ife94d488ead512abc6d137a0df74298bac67185d
Diffstat (limited to 'ucb/source/ucp/ftp/ftpcontent.cxx')
-rw-r--r--ucb/source/ucp/ftp/ftpcontent.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/ucb/source/ucp/ftp/ftpcontent.cxx b/ucb/source/ucp/ftp/ftpcontent.cxx
index 54166dabeb26..17e366f5369b 100644
--- a/ucb/source/ucp/ftp/ftpcontent.cxx
+++ b/ucb/source/ucp/ftp/ftpcontent.cxx
@@ -239,12 +239,10 @@ public:
ResultSetFactoryI(const Reference<XComponentContext >& rxContext,
const Reference<XContentProvider >& xProvider,
const Sequence<Property>& seq,
- const Sequence<NumberedSortingInfo>& seqSort,
const std::vector<FTPDirentry>& dirvec)
: m_xContext(rxContext),
m_xProvider(xProvider),
m_seq(seq),
- m_seqSort(seqSort),
m_dirvec(dirvec)
{
}
@@ -262,7 +260,6 @@ public:
Reference< XComponentContext > m_xContext;
Reference< XContentProvider > m_xProvider;
Sequence< Property > m_seq;
- Sequence< NumberedSortingInfo > m_seqSort;
std::vector<FTPDirentry> m_dirvec;
};
@@ -560,7 +557,6 @@ Any SAL_CALL FTPContent::execute( const Command& aCommand,
new ResultSetFactoryI(m_xContext,
m_xProvider.get(),
aOpenCommand.Properties,
- aOpenCommand.SortingInfo,
resvec));
aRet <<= xSet;
}