Author: damjan
Date: Mon Jan 16 03:02:57 2017
New Revision: 1778961
URL: http://svn.apache.org/viewvc?rev=1778961&view=rev
Log:
Fix symbol visibility problems with main/sc modules.
SC_DLLIMPLEMENTATION must only be defined for sc itself, not for scui or
scfilt, as that stops them from importing sc's symbols.
Should fix building main/sc on Windows.
Patch by: me
Modified:
openoffice/trunk/main/sc/Library_scfilt.mk
openoffice/trunk/main/sc/Library_scui.mk
openoffice/trunk/main/sc/source/ui/attrdlg/attrdlg.cxx
openoffice/trunk/main/sc/source/ui/attrdlg/scdlgfact.cxx
openoffice/trunk/main/sc/source/ui/attrdlg/scuiexp.cxx
openoffice/trunk/main/sc/source/ui/attrdlg/tabpages.cxx
openoffice/trunk/main/sc/source/ui/cctrl/editfield.cxx
openoffice/trunk/main/sc/source/ui/dbgui/dapidata.cxx
openoffice/trunk/main/sc/source/ui/dbgui/dapitype.cxx
openoffice/trunk/main/sc/source/ui/dbgui/dpgroupdlg.cxx
openoffice/trunk/main/sc/source/ui/dbgui/pfiltdlg.cxx
openoffice/trunk/main/sc/source/ui/dbgui/pvfundlg.cxx
openoffice/trunk/main/sc/source/ui/dbgui/scendlg.cxx
openoffice/trunk/main/sc/source/ui/dbgui/scuiasciiopt.cxx
openoffice/trunk/main/sc/source/ui/dbgui/scuiimoptdlg.cxx
openoffice/trunk/main/sc/source/ui/dbgui/sortdlg.cxx
openoffice/trunk/main/sc/source/ui/dbgui/subtdlg.cxx
openoffice/trunk/main/sc/source/ui/dbgui/textimportoptions.cxx
openoffice/trunk/main/sc/source/ui/dbgui/tpsort.cxx
openoffice/trunk/main/sc/source/ui/dbgui/tpsubt.cxx
openoffice/trunk/main/sc/source/ui/dbgui/validate.cxx
openoffice/trunk/main/sc/source/ui/docshell/tpstat.cxx
openoffice/trunk/main/sc/source/ui/miscdlgs/crdlg.cxx
openoffice/trunk/main/sc/source/ui/miscdlgs/delcldlg.cxx
openoffice/trunk/main/sc/source/ui/miscdlgs/delcodlg.cxx
openoffice/trunk/main/sc/source/ui/miscdlgs/filldlg.cxx
openoffice/trunk/main/sc/source/ui/miscdlgs/groupdlg.cxx
openoffice/trunk/main/sc/source/ui/miscdlgs/inscldlg.cxx
openoffice/trunk/main/sc/source/ui/miscdlgs/inscodlg.cxx
openoffice/trunk/main/sc/source/ui/miscdlgs/instbdlg.cxx
openoffice/trunk/main/sc/source/ui/miscdlgs/lbseldlg.cxx
openoffice/trunk/main/sc/source/ui/miscdlgs/linkarea.cxx
openoffice/trunk/main/sc/source/ui/miscdlgs/mtrindlg.cxx
openoffice/trunk/main/sc/source/ui/miscdlgs/mvtabdlg.cxx
openoffice/trunk/main/sc/source/ui/miscdlgs/namecrea.cxx
openoffice/trunk/main/sc/source/ui/miscdlgs/namepast.cxx
openoffice/trunk/main/sc/source/ui/miscdlgs/scuiautofmt.cxx
openoffice/trunk/main/sc/source/ui/miscdlgs/shtabdlg.cxx
openoffice/trunk/main/sc/source/ui/miscdlgs/strindlg.cxx
openoffice/trunk/main/sc/source/ui/miscdlgs/tabbgcolordlg.cxx
openoffice/trunk/main/sc/source/ui/miscdlgs/textdlgs.cxx
openoffice/trunk/main/sc/source/ui/optdlg/opredlin.cxx
openoffice/trunk/main/sc/source/ui/optdlg/tpcalc.cxx
openoffice/trunk/main/sc/source/ui/optdlg/tpprint.cxx
openoffice/trunk/main/sc/source/ui/optdlg/tpusrlst.cxx
openoffice/trunk/main/sc/source/ui/optdlg/tpview.cxx
openoffice/trunk/main/sc/source/ui/pagedlg/hfedtdlg.cxx
openoffice/trunk/main/sc/source/ui/pagedlg/scuitphfedit.cxx
openoffice/trunk/main/sc/source/ui/pagedlg/tphf.cxx
openoffice/trunk/main/sc/source/ui/pagedlg/tptable.cxx
openoffice/trunk/main/sc/source/ui/styleui/styledlg.cxx
Modified: openoffice/trunk/main/sc/Library_scfilt.mk
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/Library_scfilt.mk?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/Library_scfilt.mk (original)
+++ openoffice/trunk/main/sc/Library_scfilt.mk Mon Jan 16 03:02:57 2017
@@ -34,10 +34,6 @@ $(eval $(call gb_Library_set_include,scf
-I$(SRCDIR)/sc/source/filter/inc \
))
-$(eval $(call gb_Library_add_defs,scfilt,\
- -DSC_DLLIMPLEMENTATION \
-))
-
$(eval $(call gb_Library_add_api,scfilt,\
offapi \
udkapi \
Modified: openoffice/trunk/main/sc/Library_scui.mk
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/Library_scui.mk?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/Library_scui.mk (original)
+++ openoffice/trunk/main/sc/Library_scui.mk Mon Jan 16 03:02:57 2017
@@ -34,10 +34,6 @@ $(eval $(call gb_Library_set_include,scu
-I$(SRCDIR)/sc/source/filter/inc \
))
-$(eval $(call gb_Library_add_defs,scui,\
- -DSC_DLLIMPLEMENTATION \
-))
-
$(eval $(call gb_Library_add_api,scui,\
offapi \
udkapi \
Modified: openoffice/trunk/main/sc/source/ui/attrdlg/attrdlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/attrdlg/attrdlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/attrdlg/attrdlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/attrdlg/attrdlg.cxx Mon Jan 16 03:02:57
2017
@@ -24,8 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
-
#include "scitems.hxx"
Modified: openoffice/trunk/main/sc/source/ui/attrdlg/scdlgfact.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/attrdlg/scdlgfact.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/attrdlg/scdlgfact.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/attrdlg/scdlgfact.cxx Mon Jan 16
03:02:57 2017
@@ -28,7 +28,6 @@
#undef ENABLE_LAYOUT
#endif
-#undef SC_DLLIMPLEMENTATION
#include "scdlgfact.hxx"
Modified: openoffice/trunk/main/sc/source/ui/attrdlg/scuiexp.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/attrdlg/scuiexp.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/attrdlg/scuiexp.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/attrdlg/scuiexp.cxx Mon Jan 16 03:02:57
2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
#include "scdlgfact.hxx"
#include "sal/types.h"
Modified: openoffice/trunk/main/sc/source/ui/attrdlg/tabpages.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/attrdlg/tabpages.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/attrdlg/tabpages.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/attrdlg/tabpages.cxx Mon Jan 16 03:02:57
2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/cctrl/editfield.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/cctrl/editfield.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/cctrl/editfield.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/cctrl/editfield.cxx Mon Jan 16 03:02:57
2017
@@ -24,9 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#ifdef SC_DLLIMPLEMENTATION
-#undef SC_DLLIMPLEMENTATION
-#endif
#include "editfield.hxx"
#include <rtl/math.hxx>
#include <unotools/localedatawrapper.hxx>
Modified: openoffice/trunk/main/sc/source/ui/dbgui/dapidata.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/dbgui/dapidata.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/dbgui/dapidata.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/dbgui/dapidata.cxx Mon Jan 16 03:02:57
2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/dbgui/dapitype.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/dbgui/dapitype.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/dbgui/dapitype.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/dbgui/dapitype.cxx Mon Jan 16 03:02:57
2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/dbgui/dpgroupdlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/dbgui/dpgroupdlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/dbgui/dpgroupdlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/dbgui/dpgroupdlg.cxx Mon Jan 16 03:02:57
2017
@@ -24,9 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#ifdef SC_DLLIMPLEMENTATION
-#undef SC_DLLIMPLEMENTATION
-#endif
#include "dpgroupdlg.hxx"
Modified: openoffice/trunk/main/sc/source/ui/dbgui/pfiltdlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/dbgui/pfiltdlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/dbgui/pfiltdlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/dbgui/pfiltdlg.cxx Mon Jan 16 03:02:57
2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/dbgui/pvfundlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/dbgui/pvfundlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/dbgui/pvfundlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/dbgui/pvfundlg.cxx Mon Jan 16 03:02:57
2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
#include "pvfundlg.hxx"
Modified: openoffice/trunk/main/sc/source/ui/dbgui/scendlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/dbgui/scendlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/dbgui/scendlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/dbgui/scendlg.cxx Mon Jan 16 03:02:57
2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/dbgui/scuiasciiopt.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/dbgui/scuiasciiopt.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/dbgui/scuiasciiopt.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/dbgui/scuiasciiopt.cxx Mon Jan 16
03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
#include "global.hxx"
#include "scresid.hxx"
Modified: openoffice/trunk/main/sc/source/ui/dbgui/scuiimoptdlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/dbgui/scuiimoptdlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/dbgui/scuiimoptdlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/dbgui/scuiimoptdlg.cxx Mon Jan 16
03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/dbgui/sortdlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/dbgui/sortdlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/dbgui/sortdlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/dbgui/sortdlg.cxx Mon Jan 16 03:02:57
2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
#include <vcl/msgbox.hxx>
Modified: openoffice/trunk/main/sc/source/ui/dbgui/subtdlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/dbgui/subtdlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/dbgui/subtdlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/dbgui/subtdlg.cxx Mon Jan 16 03:02:57
2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/dbgui/textimportoptions.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/dbgui/textimportoptions.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/dbgui/textimportoptions.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/dbgui/textimportoptions.cxx Mon Jan 16
03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
//------------------------------------------------------------------------
Modified: openoffice/trunk/main/sc/source/ui/dbgui/tpsort.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/dbgui/tpsort.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/dbgui/tpsort.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/dbgui/tpsort.cxx Mon Jan 16 03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/dbgui/tpsubt.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/dbgui/tpsubt.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/dbgui/tpsubt.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/dbgui/tpsubt.cxx Mon Jan 16 03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/dbgui/validate.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/dbgui/validate.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/dbgui/validate.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/dbgui/validate.cxx Mon Jan 16 03:02:57
2017
@@ -24,9 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#ifdef SC_DLLIMPLEMENTATION
-#undef SC_DLLIMPLEMENTATION
-#endif
#include <vcl/svapp.hxx>
#include <svl/aeitem.hxx>
Modified: openoffice/trunk/main/sc/source/ui/docshell/tpstat.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/docshell/tpstat.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/docshell/tpstat.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/docshell/tpstat.cxx Mon Jan 16 03:02:57
2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/miscdlgs/crdlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/miscdlgs/crdlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/miscdlgs/crdlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/miscdlgs/crdlg.cxx Mon Jan 16 03:02:57
2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/miscdlgs/delcldlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/miscdlgs/delcldlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/miscdlgs/delcldlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/miscdlgs/delcldlg.cxx Mon Jan 16
03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/miscdlgs/delcodlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/miscdlgs/delcodlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/miscdlgs/delcodlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/miscdlgs/delcodlg.cxx Mon Jan 16
03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/miscdlgs/filldlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/miscdlgs/filldlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/miscdlgs/filldlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/miscdlgs/filldlg.cxx Mon Jan 16 03:02:57
2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/miscdlgs/groupdlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/miscdlgs/groupdlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/miscdlgs/groupdlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/miscdlgs/groupdlg.cxx Mon Jan 16
03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/miscdlgs/inscldlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/miscdlgs/inscldlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/miscdlgs/inscldlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/miscdlgs/inscldlg.cxx Mon Jan 16
03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/miscdlgs/inscodlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/miscdlgs/inscodlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/miscdlgs/inscodlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/miscdlgs/inscodlg.cxx Mon Jan 16
03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/miscdlgs/instbdlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/miscdlgs/instbdlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/miscdlgs/instbdlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/miscdlgs/instbdlg.cxx Mon Jan 16
03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/miscdlgs/lbseldlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/miscdlgs/lbseldlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/miscdlgs/lbseldlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/miscdlgs/lbseldlg.cxx Mon Jan 16
03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/miscdlgs/linkarea.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/miscdlgs/linkarea.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/miscdlgs/linkarea.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/miscdlgs/linkarea.cxx Mon Jan 16
03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/miscdlgs/mtrindlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/miscdlgs/mtrindlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/miscdlgs/mtrindlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/miscdlgs/mtrindlg.cxx Mon Jan 16
03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/miscdlgs/mvtabdlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/miscdlgs/mvtabdlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/miscdlgs/mvtabdlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/miscdlgs/mvtabdlg.cxx Mon Jan 16
03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/miscdlgs/namecrea.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/miscdlgs/namecrea.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/miscdlgs/namecrea.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/miscdlgs/namecrea.cxx Mon Jan 16
03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/miscdlgs/namepast.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/miscdlgs/namepast.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/miscdlgs/namepast.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/miscdlgs/namepast.cxx Mon Jan 16
03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/miscdlgs/scuiautofmt.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/miscdlgs/scuiautofmt.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/miscdlgs/scuiautofmt.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/miscdlgs/scuiautofmt.cxx Mon Jan 16
03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/miscdlgs/shtabdlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/miscdlgs/shtabdlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/miscdlgs/shtabdlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/miscdlgs/shtabdlg.cxx Mon Jan 16
03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/miscdlgs/strindlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/miscdlgs/strindlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/miscdlgs/strindlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/miscdlgs/strindlg.cxx Mon Jan 16
03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/miscdlgs/tabbgcolordlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/miscdlgs/tabbgcolordlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/miscdlgs/tabbgcolordlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/miscdlgs/tabbgcolordlg.cxx Mon Jan 16
03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
//------------------------------------------------------------------
Modified: openoffice/trunk/main/sc/source/ui/miscdlgs/textdlgs.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/miscdlgs/textdlgs.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/miscdlgs/textdlgs.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/miscdlgs/textdlgs.cxx Mon Jan 16
03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
// ohne precompiled Headers uebersetzen !!!
Modified: openoffice/trunk/main/sc/source/ui/optdlg/opredlin.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/optdlg/opredlin.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/optdlg/opredlin.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/optdlg/opredlin.cxx Mon Jan 16 03:02:57
2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/optdlg/tpcalc.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/optdlg/tpcalc.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/optdlg/tpcalc.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/optdlg/tpcalc.cxx Mon Jan 16 03:02:57
2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/optdlg/tpprint.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/optdlg/tpprint.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/optdlg/tpprint.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/optdlg/tpprint.cxx Mon Jan 16 03:02:57
2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
#include <svl/eitem.hxx>
Modified: openoffice/trunk/main/sc/source/ui/optdlg/tpusrlst.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/optdlg/tpusrlst.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/optdlg/tpusrlst.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/optdlg/tpusrlst.cxx Mon Jan 16 03:02:57
2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/optdlg/tpview.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/optdlg/tpview.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/optdlg/tpview.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/optdlg/tpview.cxx Mon Jan 16 03:02:57
2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/pagedlg/hfedtdlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/pagedlg/hfedtdlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/pagedlg/hfedtdlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/pagedlg/hfedtdlg.cxx Mon Jan 16 03:02:57
2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/pagedlg/scuitphfedit.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/pagedlg/scuitphfedit.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/pagedlg/scuitphfedit.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/pagedlg/scuitphfedit.cxx Mon Jan 16
03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/pagedlg/tphf.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/pagedlg/tphf.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/pagedlg/tphf.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/pagedlg/tphf.cxx Mon Jan 16 03:02:57 2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/pagedlg/tptable.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/pagedlg/tptable.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/pagedlg/tptable.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/pagedlg/tptable.cxx Mon Jan 16 03:02:57
2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION
Modified: openoffice/trunk/main/sc/source/ui/styleui/styledlg.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/styleui/styledlg.cxx?rev=1778961&r1=1778960&r2=1778961&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/styleui/styledlg.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/styleui/styledlg.cxx Mon Jan 16 03:02:57
2017
@@ -24,7 +24,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_scui.hxx"
-#undef SC_DLLIMPLEMENTATION