summaryrefslogtreecommitdiff
path: root/include/filter/msfilter/mstoolbar.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-07 11:53:18 +0200
committerMichael Stahl <mstahl@redhat.com>2014-02-12 19:45:10 +0000
commit0c7f35277575fee8594737f5b2842dfac2c6d04f (patch)
tree23ec8864dcdd91dc4c6f4234380bd8f4695131a9 /include/filter/msfilter/mstoolbar.hxx
parentda2efb3e14aa93be13dc4a88f0e41b7dc7948e15 (diff)
remove SvStream::operator>> methods
in favour of ReadXXX methods. Change-Id: Ic2c0a7b6b92ff4c236ae99b39d77f3d935b301e3 Reviewed-on: https://gerrit.libreoffice.org/7915 Tested-by: Michael Stahl <mstahl@redhat.com> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'include/filter/msfilter/mstoolbar.hxx')
-rw-r--r--include/filter/msfilter/mstoolbar.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/filter/msfilter/mstoolbar.hxx b/include/filter/msfilter/mstoolbar.hxx
index f2587835ea15..f4d6c37b5597 100644
--- a/include/filter/msfilter/mstoolbar.hxx
+++ b/include/filter/msfilter/mstoolbar.hxx
@@ -310,7 +310,7 @@ public:
sal_Int16 top;
sal_Int16 right;
sal_Int16 bottom;
- bool Read( SvStream &rS ) { rS >> left >> top >> right >> bottom; return true; }
+ bool Read( SvStream &rS ) { rS.ReadInt16( left ).ReadInt16( top ).ReadInt16( right ).ReadInt16( bottom ); return true; }
void Print( FILE* fo );
};