summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwpsvstream.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-12-11 08:20:21 +0200
committerNoel Grandin <noel@peralex.com>2014-12-11 14:57:34 +0200
commit5d75ef73a2e77e93da1ac3cf77c7dbb170107935 (patch)
tree99072890c13d26ea2041d7600734d0fcdd75f6fe /lotuswordpro/source/filter/lwpsvstream.hxx
parentupdate documentation (diff)
downloadcore-5d75ef73a2e77e93da1ac3cf77c7dbb170107935.tar.gz
core-5d75ef73a2e77e93da1ac3cf77c7dbb170107935.zip
remove LwpSvStream::operator>> methods
in favour of ReadXXX methods. Change-Id: Ifa627cf190b22315f4ce294c1ec268c4d1361748
Diffstat (limited to 'lotuswordpro/source/filter/lwpsvstream.hxx')
-rw-r--r--lotuswordpro/source/filter/lwpsvstream.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/lotuswordpro/source/filter/lwpsvstream.hxx b/lotuswordpro/source/filter/lwpsvstream.hxx
index b8a4aa62438c..0917cd461c7e 100644
--- a/lotuswordpro/source/filter/lwpsvstream.hxx
+++ b/lotuswordpro/source/filter/lwpsvstream.hxx
@@ -72,13 +72,13 @@ public:
sal_Int64 Tell();
sal_Int64 Seek( sal_Int64 pos );
- LwpSvStream& operator>>( sal_uInt8& rUInt8 );
- LwpSvStream& operator>>( sal_uInt16& rUInt16 );
- LwpSvStream& operator>>( sal_uInt32& rUInt32 );
+ LwpSvStream& ReadUInt8( sal_uInt8& rUInt8 );
+ LwpSvStream& ReadUInt16( sal_uInt16& rUInt16 );
+ LwpSvStream& ReadUInt32( sal_uInt32& rUInt32 );
- LwpSvStream& operator>>( sal_Int8& rInt8 );
- LwpSvStream& operator>>( sal_Int16& rInt16 );
- LwpSvStream& operator>>( sal_Int32& rInt32 );
+ LwpSvStream& ReadInt8( sal_Int8& rInt8 );
+ LwpSvStream& ReadInt16( sal_Int16& rInt16 );
+ LwpSvStream& ReadInt32( sal_Int32& rInt32 );
static const sal_uInt32 LWP_STREAM_BASE;