summaryrefslogtreecommitdiff
path: root/package/inc/ByteGrabber.hxx
diff options
context:
space:
mode:
authorMartin Gallwey <mtg@openoffice.org>2001-08-08 17:16:32 +0000
committerMartin Gallwey <mtg@openoffice.org>2001-08-08 17:16:32 +0000
commitcac3e5d5e6482953eaa493d12929581c840ede1c (patch)
treecf4190bd4679845831e60d6e0cde5e1879c5400b /package/inc/ByteGrabber.hxx
parent49c1230b59a3e9c5686510c1e0015e55c7a3831d (diff)
#86708# need to re-grab the pointer every time as some underlying implementations realloc the memory
Diffstat (limited to 'package/inc/ByteGrabber.hxx')
-rw-r--r--package/inc/ByteGrabber.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/package/inc/ByteGrabber.hxx b/package/inc/ByteGrabber.hxx
index 3cbb3687dde5..85f6685d0f23 100644
--- a/package/inc/ByteGrabber.hxx
+++ b/package/inc/ByteGrabber.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ByteGrabber.hxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: mtg $ $Date: 2001-05-31 09:36:39 $
+ * last change: $Author: mtg $ $Date: 2001-08-08 18:16:32 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -74,7 +74,7 @@ protected:
com::sun::star::uno::Reference < com::sun::star::io::XInputStream > xStream;
com::sun::star::uno::Reference < com::sun::star::io::XSeekable > xSeek;
com::sun::star::uno::Sequence < sal_Int8 > aSequence;
- sal_Int8 *pSequence;
+ const sal_Int8 *pSequence;
public:
ByteGrabber (com::sun::star::uno::Reference < com::sun::star::io::XInputStream > xIstream);