[Libreoffice-commits] core.git: sw/source

Michael Stahl mstahl at redhat.com
Wed Feb 12 21:29:57 CET 2014


 sw/source/core/layout/atrfrm.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 016de6fa5679a99343d6bca173d8c83534c02e31
Author: Michael Stahl <mstahl at redhat.com>
Date:   Wed Feb 12 21:23:55 2014 +0100

    sw: replace #ifdef'd operator<<
    
    Change-Id: I63c24f453f843a363fc056879d652f28d7052f1e

diff --git a/sw/source/core/layout/atrfrm.cxx b/sw/source/core/layout/atrfrm.cxx
index 45c784f..690538b 100644
--- a/sw/source/core/layout/atrfrm.cxx
+++ b/sw/source/core/layout/atrfrm.cxx
@@ -1232,7 +1232,7 @@ SfxPoolItem* SwFmtVertOrient::Create(SvStream &rStream, sal_uInt16 /*itemVersion
     rStream.ReadInt64(yPos);
 #else
     sal_Int32 n;
-    rStream >> n;
+    rStream.ReadInt32(n);
     yPos = n;
 #endif
     rStream.ReadInt16( orient ).ReadInt16( relation );


More information about the Libreoffice-commits mailing list