summaryrefslogtreecommitdiff
path: root/include/comphelper/seqstream.hxx
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 /include/comphelper/seqstream.hxx
parent22fbb71b5c9ca85dbf2879b212e4b3795f0dd072 (diff)
Unwind useless comphelper::ByteSequence typedef
Change-Id: I59317a0d591eac188fa01636031e907357038c29
Diffstat (limited to 'include/comphelper/seqstream.hxx')
-rw-r--r--include/comphelper/seqstream.hxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/comphelper/seqstream.hxx b/include/comphelper/seqstream.hxx
index 4f9c9380bfa1..9cb122bf8730 100644
--- a/include/comphelper/seqstream.hxx
+++ b/include/comphelper/seqstream.hxx
@@ -32,8 +32,6 @@
namespace comphelper
{
- typedef ::com::sun::star::uno::Sequence<sal_Int8> ByteSequence;
-
//==================================================================
// SequenceInputStream
// stream for reading data from a sequence of bytes
@@ -44,11 +42,11 @@ class COMPHELPER_DLLPUBLIC SequenceInputStream
: public ::cppu::WeakImplHelper2< ::com::sun::star::io::XInputStream, ::com::sun::star::io::XSeekable >
{
::osl::Mutex m_aMutex;
- ByteSequence m_aData;
+ css::uno::Sequence<sal_Int8> m_aData;
sal_Int32 m_nPos;
public:
- SequenceInputStream(const ByteSequence& rData);
+ SequenceInputStream(css::uno::Sequence<sal_Int8> const & rData);
// com::sun::star::io::XInputStream
virtual sal_Int32 SAL_CALL readBytes( ::com::sun::star::uno::Sequence<sal_Int8>& aData, sal_Int32 nBytesToRead )