diff options
author | Kurt Zenker <kz@openoffice.org> | 2004-10-04 18:38:31 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2004-10-04 18:38:31 +0000 |
commit | e394bb6e58901dde76deefa3eb9b1355dbcfc859 (patch) | |
tree | 9f77718f024e514d880a74e64b500b42a7564afe /vcl/source | |
parent | 13ad8b448d86acae6e63e673596b66e3ad2f9a01 (diff) |
INTEGRATION: CWS mav09 (1.7.116); FILE MERGED
2004/09/16 21:22:11 mav 1.7.116.2: RESYNC: (1.7-1.8); FILE MERGED
2004/09/03 15:25:46 mav 1.7.116.1: #i27773# correct graphic export to a stream in native format
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/gdi/graph.cxx | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/vcl/source/gdi/graph.cxx b/vcl/source/gdi/graph.cxx index 8676dd6aae31..ab76b9161be4 100644 --- a/vcl/source/gdi/graph.cxx +++ b/vcl/source/gdi/graph.cxx @@ -2,9 +2,9 @@ * * $RCSfile: graph.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: kz $ $Date: 2004-08-31 14:58:46 $ + * last change: $Author: kz $ $Date: 2004-10-04 19:38:31 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -858,6 +858,13 @@ ULONG Graphic::GetChecksum() const // ------------------------------------------------------------------------ +BOOL Graphic::ExportNative( SvStream& rOStream ) const +{ + return mpImpGraphic->ImplExportNative( rOStream ); +} + +// ------------------------------------------------------------------------ + SvStream& operator>>( SvStream& rIStream, Graphic& rGraphic ) { rGraphic.ImplTestRefCount(); |