summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-08-03 22:41:41 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-08-03 22:41:41 +0100
commit402b448a4f0fb98479ddc73cb0488751f0dad75e (patch)
tree55d617c71ade40cc29f7fd5f6fdf0d95f13ca0a9
parent45fd57f285f6a780479147e547826dd824e68ae6 (diff)
SwFilterBase::ReadUnicode is dubious, luckily unused
-rw-r--r--sw/source/filter/inc/fltbase.hxx11
1 files changed, 0 insertions, 11 deletions
diff --git a/sw/source/filter/inc/fltbase.hxx b/sw/source/filter/inc/fltbase.hxx
index 2748d48a20..919d42b953 100644
--- a/sw/source/filter/inc/fltbase.hxx
+++ b/sw/source/filter/inc/fltbase.hxx
@@ -48,7 +48,6 @@ protected:
inline void ReadChar( char &rC );
inline void ReadByte( sal_uInt8 &rN );
inline void Read( short &rN );
- inline void ReadUnicode( sal_Unicode &rU );
inline void Read( sal_uInt8 &rN0, sal_uInt16 &rN1, sal_uInt16 &rN2 );
inline void Read( sal_uInt16 &rN );
inline void Read( sal_uInt16 &rN1, sal_uInt16 &rN2 );
@@ -71,16 +70,6 @@ inline void SwFilterBase::ReadByte( sal_uInt8 &rN )
nBytesLeft--;
}
-inline void SwFilterBase::ReadUnicode( sal_Unicode &rU )
-{
- {
- sal_Char cC;
- *pIn >> cC;
- rU = ByteString::ConvertToUnicode(cC, eQuellChar);
- nBytesLeft--;
- }
-}
-
inline void SwFilterBase::Read( short &rN )
{
*pIn >> rN;