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 /vcl/source/gdi/region.cxx | |
parent | c007829a67456ef01b82b8368f7ed3e5a3026c95 (diff) |
SvStream: WriteUChar -> WriteBool
Change-Id: I89aa0e22c31d368ab36fe46917db6aacb11c7b14
Diffstat (limited to 'vcl/source/gdi/region.cxx')
-rw-r--r-- | vcl/source/gdi/region.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/region.cxx b/vcl/source/gdi/region.cxx index d6114ef721d4..086739a62fff 100644 --- a/vcl/source/gdi/region.cxx +++ b/vcl/source/gdi/region.cxx @@ -1682,7 +1682,7 @@ SvStream& WriteRegion( SvStream& rOStrm, const vcl::Region& rRegion ) // write polypolygon if available const bool bHasPolyPolygon(rRegion.HasPolyPolygonOrB2DPolyPolygon()); - rOStrm.WriteUChar( bHasPolyPolygon ); + rOStrm.WriteBool( bHasPolyPolygon ); if(bHasPolyPolygon) { |