diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-17 14:55:13 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-17 15:20:43 +0200 |
commit | 9f23260105672903a047c2194a36ebd448fff135 (patch) | |
tree | 9408d894cebb45123235ae8a86700a0f8686d7af /tools | |
parent | c007829a67456ef01b82b8368f7ed3e5a3026c95 (diff) |
SvStream: WriteUChar -> WriteBool
Change-Id: I89aa0e22c31d368ab36fe46917db6aacb11c7b14
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/generic/poly.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/generic/poly.cxx b/tools/source/generic/poly.cxx index e4153b9af6f9..53577424d666 100644 --- a/tools/source/generic/poly.cxx +++ b/tools/source/generic/poly.cxx @@ -1643,7 +1643,7 @@ void Polygon::ImplWrite( SvStream& rOStream ) const { bool bHasPolyFlags = mpImplPolygon->mpFlagAry != NULL; WritePolygon( rOStream, *this ); - rOStream.WriteUChar(bHasPolyFlags); + rOStream.WriteBool(bHasPolyFlags); if ( bHasPolyFlags ) rOStream.Write( mpImplPolygon->mpFlagAry, mpImplPolygon->mnPoints ); |