diff options
author | Noel Grandin <noel@peralex.com> | 2014-12-12 14:32:11 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-12-19 08:50:29 +0200 |
commit | 4cbba98601ae16cda1739e1e81d697592bb31213 (patch) | |
tree | e9dab946f962455656c76479ee63c6b41d139dc1 /oox/source/ole | |
parent | a3181adc11bc707680424551369a24b3c65de921 (diff) |
remove operator>> and operator<< methods
in favour of ReadXXX/WriteXXX methods
Change-Id: I849fd10c689fb9834ae9974e430dc337adc68755
Diffstat (limited to 'oox/source/ole')
-rw-r--r-- | oox/source/ole/olehelper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/ole/olehelper.cxx b/oox/source/ole/olehelper.cxx index a87f290cc94e..66d8554a21e3 100644 --- a/oox/source/ole/olehelper.cxx +++ b/oox/source/ole/olehelper.cxx @@ -426,7 +426,7 @@ void OleFormCtrlExportHelper::exportName( const Reference< XOutputStream >& rxOu { oox::BinaryXOutputStream aOut( rxOut, false ); aOut.writeUnicodeArray( maName ); - aOut << sal_Int32(0); + aOut.WriteInt32(0); } void OleFormCtrlExportHelper::exportCompObj( const Reference< XOutputStream >& rxOut ) |