summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-10-16 15:31:41 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-10-16 15:42:59 +0200
commit15cbc3e54aba11fb742bef513fab6bd2d16e7aac (patch)
treeefe186dc3dffaf92286adf36c34c6fdfb780864e /comphelper
parent22fbb71b5c9ca85dbf2879b212e4b3795f0dd072 (diff)
Unwind useless comphelper::ByteSequence typedef
Change-Id: I59317a0d591eac188fa01636031e907357038c29
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/streaming/seqstream.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/comphelper/source/streaming/seqstream.cxx b/comphelper/source/streaming/seqstream.cxx
index 242af3a39b4c..bfc9ec59e531 100644
--- a/comphelper/source/streaming/seqstream.cxx
+++ b/comphelper/source/streaming/seqstream.cxx
@@ -33,7 +33,8 @@ using namespace ::osl;
//---------------------------------------------------------------------------------------------
//------------------------------------------------------------------
-SequenceInputStream::SequenceInputStream(const ByteSequence& rData)
+SequenceInputStream::SequenceInputStream(
+ css::uno::Sequence<sal_Int8> const & rData)
: m_aData(rData)
, m_nPos(0)
{