diff --git a/goodies/source/filter.vcl/eps/dlgeps.cxx b/goodies/source/filter.vcl/eps/dlgeps.cxx index c15e01c6c780..87515fd74f6b 100644 --- a/goodies/source/filter.vcl/eps/dlgeps.cxx +++ b/goodies/source/filter.vcl/eps/dlgeps.cxx @@ -2,9 +2,9 @@ * * $RCSfile: dlgeps.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: sj $ $Date: 2001-10-09 12:09:18 $ + * last change: $Author: sj $ $Date: 2002-07-16 10:16:32 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -92,13 +92,13 @@ DlgExportEPS::DlgExportEPS( FltCallDialogParameter& rPara ) : aBtnOK ( this, ResId( BTN_OK ) ), aBtnCancel ( this, ResId( BTN_CANCEL ) ), aBtnHelp ( this, ResId( BTN_HELP ) ), - pMgr ( rPara.pResMgr ) + pMgr ( rPara.pResMgr ), + rFltCallPara ( rPara ) { FreeResource(); - String aFilterConfigPath( RTL_CONSTASCII_USTRINGPARAM( "Office.Common/Filter/Graphic/Export/EPS" ) ); - pConfigItem = new FilterConfigItem( aFilterConfigPath ); + pConfigItem = new FilterConfigItem( aFilterConfigPath, &rPara.aFilterData ); // Config-Parameter lesen String sPreview( RTL_CONSTASCII_USTRINGPARAM( "Preview" ) ); @@ -205,6 +205,7 @@ IMPL_LINK( DlgExportEPS, OK, void *, EMPTYARG ) String sTextMode( RTL_CONSTASCII_USTRINGPARAM( "TextMode" ) ); pConfigItem->WriteInt32( sTextMode, aLBTextMode.GetSelectEntryPos() ); + rFltCallPara.aFilterData = pConfigItem->GetFilterData(); EndDialog( RET_OK ); return 0; diff --git a/goodies/source/filter.vcl/eps/dlgeps.hxx b/goodies/source/filter.vcl/eps/dlgeps.hxx index 75b7555487da..bb5d349f4faa 100644 --- a/goodies/source/filter.vcl/eps/dlgeps.hxx +++ b/goodies/source/filter.vcl/eps/dlgeps.hxx @@ -2,9 +2,9 @@ * * $RCSfile: dlgeps.hxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: sj $ $Date: 2001-04-28 15:40:36 $ + * last change: $Author: sj $ $Date: 2002-07-16 10:16:33 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -82,6 +82,9 @@ class ResMgr; class DlgExportEPS : public ModalDialog { private: + + FltCallDialogParameter& rFltCallPara; + FixedLine aGrpPreview; CheckBox aCBPreviewTiff; CheckBox aCBPreviewEPSI;