diff options
author | Kurt Zenker <kz@openoffice.org> | 2003-11-18 13:33:10 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2003-11-18 13:33:10 +0000 |
commit | 54807ceab26e6e791f37e2eb5e7cc377ada36f5c (patch) | |
tree | 3114c82a3996a211e3ecedbadadc6680b720ff98 | |
parent | e77d03bb655a0985e6a9806f4295524018b68e5d (diff) |
INTEGRATION: CWS vclplug (1.2.326); FILE MERGED
2003/10/21 15:53:13 pl 1.2.326.1: #i21232# first round of virtualizing the Sal classes, Unix works, Windows to come
-rw-r--r-- | vcl/source/gdi/cvtgrf.cxx | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/vcl/source/gdi/cvtgrf.cxx b/vcl/source/gdi/cvtgrf.cxx index fddf020b503b..f16324c6d0d2 100644 --- a/vcl/source/gdi/cvtgrf.cxx +++ b/vcl/source/gdi/cvtgrf.cxx @@ -2,9 +2,9 @@ * * $RCSfile: cvtgrf.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: hr $ $Date: 2001-09-27 17:00:25 $ + * last change: $Author: kz $ $Date: 2003-11-18 14:33:10 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -81,19 +81,6 @@ // - Callback - // -------------- -#ifndef REMOTE_APPSERVER - -ULONG ImplFilterCallback( void* pInst, - ULONG nInFormat, void* pInBuffer, ULONG nInBufSize, - ULONG nOutFormat, void** ppOutBuffer ) -{ - return( ( (GraphicConverter*) pInst )->ImplConvert( nInFormat, - pInBuffer, nInBufSize, - ppOutBuffer, nOutFormat ) ); -} - -#endif - // -------------------- // - GraphicConverter - // -------------------- @@ -101,9 +88,6 @@ ULONG ImplFilterCallback( void* pInst, GraphicConverter::GraphicConverter() : mpConvertData( NULL ) { -#ifndef REMOTE_APPSERVER - SetFilterCallback( (void*)ImplFilterCallback, this ); -#endif } // ------------------------------------------------------------------------ |