[Libreoffice-commits] .: Branch 'integration/dev300_m98' - filter/source

Michael Meeks mmeeks at kemper.freedesktop.org
Fri Mar 4 13:24:24 PST 2011


 filter/source/graphicfilter/eps/dlgeps.cxx  |  207 ----------------------------
 filter/source/graphicfilter/eps/dlgeps.hrc  |   43 -----
 filter/source/graphicfilter/eps/dlgeps.hxx  |   85 -----------
 filter/source/graphicfilter/eps/dlgeps.src  |  160 ---------------------
 filter/source/graphicfilter/eps/epsstr.src  |   70 +++++++++
 filter/source/graphicfilter/eps/makefile.mk |    1 
 filter/source/msfilter/makefile.mk          |    4 
 7 files changed, 72 insertions(+), 498 deletions(-)

New commits:
commit 45c7c0b72f6c4e178474dd51fee02c894a735046
Author: Michael Meeks <michael.meeks at novell.com>
Date:   Fri Mar 4 21:21:15 2011 +0000

    fix more misc. merge issues

diff --git a/filter/source/graphicfilter/eps/dlgeps.cxx b/filter/source/graphicfilter/eps/dlgeps.cxx
deleted file mode 100644
index a98c3c4..0000000
--- a/filter/source/graphicfilter/eps/dlgeps.cxx
+++ /dev/null
@@ -1,207 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- * 
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org.  If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-
-// MARKER(update_precomp.py): autogen include statement, do not remove
-#include "precompiled_filter.hxx"
-
-#include <tools/ref.hxx>
-#include <vcl/msgbox.hxx>
-#include <svtools/FilterConfigItem.hxx>
-#include "dlgeps.hxx"
-#include "dlgeps.hrc"
-#include "strings.hrc"
-
-/*************************************************************************
-|*
-|* Ctor
-|*
-\************************************************************************/
-
-DlgExportEPS::DlgExportEPS( FltCallDialogParameter& rPara ) :
-                ModalDialog			( rPara.pWindow, ResId( DLG_EXPORT_EPS, *rPara.pResMgr ) ),
-                rFltCallPara		( rPara ),
-                aGrpPreview			( this, ResId( GRP_PREVIEW, *rPara.pResMgr ) ),
-                aCBPreviewTiff		( this, ResId( CB_PREVIEW_TIFF, *rPara.pResMgr ) ),
-                aCBPreviewEPSI		( this, ResId( CB_PREVIEW_EPSI, *rPara.pResMgr ) ),
-                aGrpVersion			( this, ResId( GRP_VERSION, *rPara.pResMgr ) ),
-                aRBLevel1			( this, ResId( RB_LEVEL1, *rPara.pResMgr ) ),
-                aRBLevel2			( this, ResId( RB_LEVEL2, *rPara.pResMgr ) ),
-                aGrpColor			( this, ResId( GRP_COLOR, *rPara.pResMgr ) ),
-                aRBColor			( this, ResId( RB_COLOR, *rPara.pResMgr ) ),
-                aRBGrayscale		( this, ResId( RB_GRAYSCALE, *rPara.pResMgr ) ),
-                aGrpCompression		( this, ResId( GRP_COMPRESSION, *rPara.pResMgr ) ),
-                aRBCompressionLZW	( this, ResId( RB_COMPRESSION_LZW, *rPara.pResMgr ) ),
-                aRBCompressionNone	( this, ResId( RB_COMPRESSION_NONE, *rPara.pResMgr ) ),
-                aBtnOK				( this, ResId( BTN_OK, *rPara.pResMgr ) ),
-                aBtnCancel			( this, ResId( BTN_CANCEL, *rPara.pResMgr ) ),
-                aBtnHelp			( this, ResId( BTN_HELP, *rPara.pResMgr ) ),
-                pMgr				( rPara.pResMgr )
-{
-    FreeResource();
-
-    String	aFilterConfigPath( RTL_CONSTASCII_USTRINGPARAM( "Office.Common/Filter/Graphic/Export/EPS" ) );
-    pConfigItem = new FilterConfigItem( aFilterConfigPath, &rPara.aFilterData );
-
-    // Config-Parameter lesen
-    String sPreview( RTL_CONSTASCII_USTRINGPARAM( "Preview" ) );
-    String sVersion( RTL_CONSTASCII_USTRINGPARAM( "Version" ) );
-    String sColorFormat( RTL_CONSTASCII_USTRINGPARAM( "ColorFormat" ) );   
-    String sCompressionMode( RTL_CONSTASCII_USTRINGPARAM( "CompressionMode" ) );
-    String sTextMode( RTL_CONSTASCII_USTRINGPARAM( "TextMode" ) );
-
-    sal_Int32	nPreview = pConfigItem->ReadInt32( sPreview, 0 );
-    sal_Int32	nVersion = pConfigItem->ReadInt32( sVersion, 2 );
-    sal_Int32	nColor = pConfigItem->ReadInt32( sColorFormat, 0 );
-    sal_Int32	nCompr = pConfigItem->ReadInt32( sCompressionMode, 2 );
-
-    /* SJ: The following line is not superfluous, reading the item will also	#106652#
-       create the corresponding FilterData Property. Since all filter
-       are no longer accessing the configuration itself, we have fill the 
-       FilterData sequence with all available configuration items */
-    pConfigItem->ReadInt32( sTextMode, 0 );
-
-    BOOL bCheck = FALSE;
-    if ( nPreview & 1 )
-        bCheck = TRUE;
-    aCBPreviewTiff.Check( bCheck );
-    if ( nPreview & 2 )
-        bCheck = TRUE;
-    aCBPreviewEPSI.Check( bCheck );
-
-    bCheck = FALSE;
-    if ( nVersion == 1 )
-        bCheck ^= TRUE;
-    aRBLevel1.Check( bCheck );
-    bCheck ^= TRUE;
-    aRBLevel2.Check( bCheck );
-
-    bCheck = FALSE;
-    if ( nColor == 1 )
-        bCheck ^= TRUE;
-    aRBColor.Check( bCheck );
-    bCheck ^= TRUE;
-    aRBGrayscale.Check( bCheck );
-
-    bCheck = FALSE;
-    if ( nCompr == 1 )
-        bCheck ^= TRUE;
-    aRBCompressionLZW.Check( bCheck );
-    bCheck ^= TRUE;
-    aRBCompressionNone.Check( bCheck );	
-
-    if ( aRBLevel1.IsChecked() )
-    {
-        aRBColor.Disable();
-        aRBGrayscale.Disable();
-        aRBCompressionNone.Disable();
-        aRBCompressionLZW.Disable();
-        aRBCompressionNone.Disable();
-    }
-
-    aBtnOK.SetClickHdl( LINK( this, DlgExportEPS, OK ) );
-    aRBLevel1.SetClickHdl( LINK( this, DlgExportEPS, LEVEL1 ) );
-    aRBLevel2.SetClickHdl( LINK( this, DlgExportEPS, LEVEL2 ) );
-}
-
-DlgExportEPS::~DlgExportEPS()
-{
-    delete pConfigItem;
-}
-
-/*************************************************************************
-|*
-|* Speichert eingestellte Werte in ini-Datei
-|*
-\************************************************************************/
-
-IMPL_LINK( DlgExportEPS, OK, void *, EMPTYARG )
-{
-
-    // Config-Parameter schreiben
-    sal_Int32 nCheck = 0;
-    if ( aCBPreviewTiff.IsChecked() )
-        nCheck++;
-    if ( aCBPreviewEPSI.IsChecked() )
-        nCheck += 2;
-
-    String sPreview( RTL_CONSTASCII_USTRINGPARAM( "Preview" ) );
-    pConfigItem->WriteInt32( sPreview, nCheck );
-
-    nCheck = 1;
-    if ( aRBLevel2.IsChecked() )
-        nCheck++;
-    String sVersion( RTL_CONSTASCII_USTRINGPARAM( "Version" ) );
-    pConfigItem->WriteInt32( sVersion, nCheck );
-
-    nCheck = 1;
-    if ( aRBGrayscale.IsChecked() )
-        nCheck++;
-    String sColorFormat( RTL_CONSTASCII_USTRINGPARAM( "ColorFormat" ) );   
-    pConfigItem->WriteInt32( sColorFormat, nCheck );
-
-    nCheck = 1;
-    if ( aRBCompressionNone.IsChecked() )
-        nCheck++;
-    String sCompressionMode( RTL_CONSTASCII_USTRINGPARAM( "CompressionMode" ) );
-    pConfigItem->WriteInt32( sCompressionMode, nCheck );
-
-    rFltCallPara.aFilterData = pConfigItem->GetFilterData();
-    EndDialog( RET_OK );
-
-    return 0;
-}
-
-//------------------------------------------------------------------------
-
-IMPL_LINK( DlgExportEPS, LEVEL1, void*, EMPTYARG )
-{
-    if ( aRBLevel1.IsChecked() )
-    {
-        aRBColor.Disable();
-        aRBGrayscale.Disable();
-        aRBCompressionLZW.Disable();
-        aRBCompressionNone.Disable();
-    }
-    return 0;
-}
-
-//------------------------------------------------------------------------
-
-IMPL_LINK( DlgExportEPS, LEVEL2, void*, EMPTYARG )
-{
-    if ( aRBLevel2.IsChecked() )
-    {
-        aRBColor.Enable();
-        aRBGrayscale.Enable();
-        aRBCompressionLZW.Enable();
-        aRBCompressionNone.Enable();
-    }
-    return 0;
-}
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/filter/source/graphicfilter/eps/dlgeps.hrc b/filter/source/graphicfilter/eps/dlgeps.hrc
deleted file mode 100644
index f244d91..0000000
--- a/filter/source/graphicfilter/eps/dlgeps.hrc
+++ /dev/null
@@ -1,43 +0,0 @@
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- * 
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org.  If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-#include "filter.hrc"
-
-#define BTN_OK 1
-#define BTN_CANCEL 1
-#define BTN_HELP 1
-#define	GRP_PREVIEW 1
-#define GRP_VERSION 2
-#define GRP_COLOR 3
-#define GRP_COMPRESSION 4
-#define CB_PREVIEW_TIFF 1
-#define CB_PREVIEW_EPSI 2
-#define RB_LEVEL1 1
-#define RB_LEVEL2 2
-#define RB_COLOR  3
-#define RB_GRAYSCALE 4
-#define RB_COMPRESSION_LZW 5
-#define RB_COMPRESSION_NONE 6
diff --git a/filter/source/graphicfilter/eps/dlgeps.hxx b/filter/source/graphicfilter/eps/dlgeps.hxx
deleted file mode 100644
index 46a5a91..0000000
--- a/filter/source/graphicfilter/eps/dlgeps.hxx
+++ /dev/null
@@ -1,85 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- * 
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org.  If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-
-#ifndef _DLGEPS_HXX_
-#define _DLGEPS_HXX_
-#include <svtools/fltcall.hxx>
-#include <vcl/dialog.hxx>
-#include <vcl/button.hxx>
-#include <vcl/fixed.hxx>
-#include <vcl/field.hxx>
-#include <vcl/lstbox.hxx>
-#include <svtools/stdctrl.hxx>
-
-
-/*************************************************************************
-|*
-|* Dialog zum Einstellen von Filteroptionen
-|*
-\************************************************************************/
-
-class FilterConfigItem;
-class ResMgr;
-
-class DlgExportEPS : public ModalDialog
-{
-private:
-
-    FltCallDialogParameter& rFltCallPara;
-
-    FixedLine			aGrpPreview;
-    CheckBox			aCBPreviewTiff;
-    CheckBox			aCBPreviewEPSI;
-    FixedLine			aGrpVersion;
-    RadioButton 		aRBLevel1;
-    RadioButton 		aRBLevel2;
-    FixedLine 			aGrpColor;
-    RadioButton 		aRBColor;
-    RadioButton 		aRBGrayscale;
-    FixedLine 			aGrpCompression;
-    RadioButton 		aRBCompressionLZW;
-    RadioButton 		aRBCompressionNone;
-    OKButton			aBtnOK;
-    CancelButton		aBtnCancel;
-    HelpButton			aBtnHelp;
-
-    FilterConfigItem* 	pConfigItem;
-    ResMgr* 			pMgr;
-
-    DECL_LINK( OK, void * );
-    DECL_LINK( LEVEL1, void* );
-    DECL_LINK( LEVEL2, void* );
-
-public:
-            DlgExportEPS( FltCallDialogParameter& rPara );
-            ~DlgExportEPS();
-};
-
-#endif // _DLGEPS_HXX_
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/filter/source/graphicfilter/eps/dlgeps.src b/filter/source/graphicfilter/eps/dlgeps.src
deleted file mode 100644
index 99c96de..0000000
--- a/filter/source/graphicfilter/eps/dlgeps.src
+++ /dev/null
@@ -1,160 +0,0 @@
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- * 
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org.  If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-
-#include "dlgeps.hrc"
-ModalDialog DLG_EXPORT_EPS
-{
-    OutputSize = TRUE ;
-    SVLook = TRUE ;
-    Size = MAP_APPFONT ( 230, 161 ) ;
-    Moveable = TRUE ;
-    Closeable = TRUE ;
-    Text [ en-US ] = "EPS Export Options";
-    OKButton BTN_OK
-    {
-        Pos = MAP_APPFONT ( 174 , 6 ) ;
-        Size = MAP_APPFONT ( 50 , 14 ) ;
-        TabStop = TRUE ;
-        DefButton = TRUE ;
-    };
-    CancelButton BTN_CANCEL
-    {
-        Pos = MAP_APPFONT ( 174, 23 ) ;
-        Size = MAP_APPFONT ( 50 , 14 ) ;
-        TabStop = TRUE ;
-    };
-    HelpButton BTN_HELP
-    {
-        Pos = MAP_APPFONT ( 174 , 43 ) ;
-        Size = MAP_APPFONT ( 50 , 14 ) ;
-        TabStop = TRUE ;
-    };
-
-    FixedLine GRP_PREVIEW
-    {
-        Pos = MAP_APPFONT ( 6 , 3  ) ;
-        Size = MAP_APPFONT ( 162 , 8 ) ;
-        Text [ en-US ] = "Preview";
-    };
-    CheckBox CB_PREVIEW_TIFF
-    {
-        Pos = MAP_APPFONT ( 12, 14 ) ;
-        Size = MAP_APPFONT ( 150 , 10 ) ;
-        TabStop = TRUE ;
-        Text [ en-US ] = "Image ~preview (TIFF)";
-    };
-    CheckBox CB_PREVIEW_EPSI
-    {
-        Pos = MAP_APPFONT ( 12 , 28 ) ;
-        Size = MAP_APPFONT ( 150, 10 ) ;
-        TabStop = TRUE ;
-        Text [ en-US ] = "~Interchange (EPSI)";
-    };
-    FixedLine GRP_VERSION
-    {
-        Pos = MAP_APPFONT ( 6, 41 ) ;
-        Size = MAP_APPFONT ( 162 , 8 ) ;
-        Text [ en-US ] = "Version";
-    };
-    RadioButton RB_LEVEL1
-    {
-        Pos = MAP_APPFONT ( 12 , 52 ) ;
-        Size = MAP_APPFONT ( 150 , 10 ) ;
-        TabStop = TRUE ;
-        Text [ en-US ] = "Level ~1";
-    };
-    RadioButton RB_LEVEL2
-    {
-        Pos = MAP_APPFONT ( 12 , 66 ) ;
-        Size = MAP_APPFONT ( 150, 10 ) ;
-        TabStop = TRUE ;
-        Text [ en-US ] = "Level ~2";
-    };
-
-    FixedLine GRP_COLOR
-    {
-        Pos = MAP_APPFONT ( 6 , 79 ) ;
-        Size = MAP_APPFONT ( 162 , 8 ) ;
-        Text [ en-US ] = "Color format";
-    };
-    RadioButton RB_COLOR
-    {
-        Pos = MAP_APPFONT ( 12 , 90 ) ;
-        Size = MAP_APPFONT ( 150, 10 ) ;
-        TabStop = TRUE ;
-        Text [ en-US ] = "~Color";
-    };
-    RadioButton RB_GRAYSCALE
-    {
-        Pos = MAP_APPFONT ( 12 , 104 ) ;
-        Size = MAP_APPFONT ( 150, 10 ) ;
-        TabStop = TRUE ;
-        Text [ en-US ] = "~Grayscale";
-    };
-
-    FixedLine  GRP_COMPRESSION
-    {
-        Pos = MAP_APPFONT ( 6 , 117 ) ;
-        Size = MAP_APPFONT ( 162 , 8 ) ;
-        Text [ en-US ] = "Compression";
-    };
-    RadioButton RB_COMPRESSION_LZW
-    {
-        Pos = MAP_APPFONT ( 12, 128 );
-        Size = MAP_APPFONT ( 150, 10 ) ;
-        TabStop = TRUE ;
-        Text [ en-US ] = "LZW encoding";
-    };
-    RadioButton RB_COMPRESSION_NONE
-    {
-        Pos = MAP_APPFONT ( 12, 141 ) ;
-        Size = MAP_APPFONT ( 150, 10 ) ;
-        TabStop = TRUE ;
-        Text [ en-US ] = "None";
-    };
-};
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/filter/source/graphicfilter/eps/epsstr.src b/filter/source/graphicfilter/eps/epsstr.src
new file mode 100644
index 0000000..5f456cb
--- /dev/null
+++ b/filter/source/graphicfilter/eps/epsstr.src
@@ -0,0 +1,70 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org.  If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+
+#include "strings.hrc"
+
+String KEY_VERSION_CHECK
+{
+    Text [ en-US ] = "Warning: Not all of the imported EPS graphics could be saved at level1\nas some are at a higher level!";
+};
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/filter/source/graphicfilter/eps/makefile.mk b/filter/source/graphicfilter/eps/makefile.mk
index b6f7281..8ed7f16 100644
--- a/filter/source/graphicfilter/eps/makefile.mk
+++ b/filter/source/graphicfilter/eps/makefile.mk
@@ -44,6 +44,7 @@ CDEFS+= -DEDITDEBUG
 .ENDIF
 
 SRS1NAME=$(TARGET)
+SRC1FILES =	epsstr.src
 .IF "$(L10N_framework)"==""
 EXCEPTIONSFILES=$(SLO)$/eps.obj
 SLOFILES =	$(SLO)$/eps.obj
diff --git a/filter/source/msfilter/makefile.mk b/filter/source/msfilter/makefile.mk
index f05b049..269e24a 100644
--- a/filter/source/msfilter/makefile.mk
+++ b/filter/source/msfilter/makefile.mk
@@ -54,8 +54,7 @@ SLOFILES= \
     $(SLO)$/services.obj	\
     $(SLO)$/svdfppt.obj		\
     $(SLO)$/svxmsbas2.obj \
-    $(SLO)$/msvbahelper.obj \
-	$(SLO)$/mstoolbar.obj\
+    $(SLO)$/mstoolbar.obj\
 
 SHL1TARGET= msfilter$(DLLPOSTFIX)
 SHL1IMPLIB=	i$(TARGET)
@@ -69,7 +68,6 @@ SHL1STDLIBS= \
              $(XMLOFFLIB) \
              $(BASEGFXLIB) \
              $(BASICLIB) \
-             $(SVTOOLLIB) \
              $(TKLIB) \
              $(VCLLIB) \
              $(SVLLIB) \


More information about the Libreoffice-commits mailing list