summaryrefslogtreecommitdiff
path: root/goodies/source
diff options
context:
space:
mode:
authorSven Jacobi <sj@openoffice.org>2001-03-08 12:47:46 +0000
committerSven Jacobi <sj@openoffice.org>2001-03-08 12:47:46 +0000
commit50a965788447e9cea732f6bde898b23eb5d89147 (patch)
tree2c0ea3d37025611d998ed73d21bef27ab77afc94 /goodies/source
parent689e46b2f846ec35d6001dc03d2250a2bebe4ebc (diff)
api changes, GraphicFilter now using Configuration Management
Diffstat (limited to 'goodies/source')
-rw-r--r--goodies/source/filter.vcl/etiff/etiff.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/goodies/source/filter.vcl/etiff/etiff.cxx b/goodies/source/filter.vcl/etiff/etiff.cxx
index 3ed0ec8f272b..3eb6ab199ba3 100644
--- a/goodies/source/filter.vcl/etiff/etiff.cxx
+++ b/goodies/source/filter.vcl/etiff/etiff.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: etiff.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:30:13 $
+ * last change: $Author: sj $ $Date: 2001-03-08 13:47:46 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -61,11 +61,11 @@
#include <vcl/graph.hxx>
#include <vcl/svapp.hxx>
-#include <vcl/config.hxx>
#include <vcl/msgbox.hxx>
#include <vcl/bmpacc.hxx>
#include <svtools/solar.hrc>
#include <svtools/fltcall.hxx>
+#include <svtools/FilterConfigItem.hxx>
#define NewSubfileType 254
#define ImageWidth 256
@@ -153,8 +153,8 @@ public:
~TIFFWriter();
BOOL WriteTIFF( const Graphic& rGraphic, SvStream& rTIFF,
- PFilterCallback pCallback, void* pCallerdata,
- Config* pOptionsConfig );
+ PFilterCallback pCallback, void* pCallerdata,
+ FilterConfigItem* pConfigItem );
};
// ------------------------------------------------------------------------
@@ -182,7 +182,7 @@ TIFFWriter::~TIFFWriter()
BOOL TIFFWriter::WriteTIFF( const Graphic& rGraphic, SvStream& rTIFF,
PFilterCallback pCallback, void* pCallerdata,
- Config* pOptionsConfig )
+ FilterConfigItem* pConfigItem )
{
ULONG* pDummy = new ULONG; delete pDummy; // damit unter OS/2
// das richtige (Tools-)new
@@ -626,9 +626,9 @@ void TIFFWriter::EndCompression()
extern "C" BOOL __LOADONCALLAPI GraphicExport( SvStream& rStream, Graphic& rGraphic,
PFilterCallback pCallback, void* pCallerData,
- Config* pOptionsConfig, BOOL )
+ FilterConfigItem* pConfigItem, BOOL )
{
- return TIFFWriter().WriteTIFF( rGraphic, rStream, pCallback, pCallerData, pOptionsConfig );
+ return TIFFWriter().WriteTIFF( rGraphic, rStream, pCallback, pCallerData, pConfigItem );
}