config_host/config_lgpl.h.in | 14 ++++++++++++++ configure.ac | 10 ++++++++-- include/tubes/file-transfer-helper.h | 1 + lotuswordpro/source/filter/lwpheader.hxx | 5 +---- sd/source/ui/remotecontrol/Communicator.cxx | 14 +++++++++----- ucb/source/ucp/webdav-neon/ContentProperties.hxx | 1 + ucb/source/ucp/webdav-neon/DAVAuthListener.hxx | 1 + ucb/source/ucp/webdav-neon/DAVAuthListenerImpl.hxx | 1 + ucb/source/ucp/webdav-neon/DAVException.hxx | 1 + ucb/source/ucp/webdav-neon/DAVProperties.hxx | 1 + ucb/source/ucp/webdav-neon/DAVRequestEnvironment.hxx | 1 + ucb/source/ucp/webdav-neon/DAVResource.hxx | 1 + ucb/source/ucp/webdav-neon/DAVResourceAccess.hxx | 1 + ucb/source/ucp/webdav-neon/DAVSession.hxx | 1 + ucb/source/ucp/webdav-neon/DAVSessionFactory.hxx | 1 + ucb/source/ucp/webdav-neon/DAVTypes.hxx | 1 + ucb/source/ucp/webdav-neon/DateTimeHelper.hxx | 1 + ucb/source/ucp/webdav-neon/LinkSequence.cxx | 2 +- ucb/source/ucp/webdav-neon/LockEntrySequence.cxx | 2 +- ucb/source/ucp/webdav-neon/LockSequence.cxx | 2 +- ucb/source/ucp/webdav-neon/LockSequence.hxx | 1 + ucb/source/ucp/webdav-neon/NeonHeadRequest.hxx | 1 + ucb/source/ucp/webdav-neon/NeonInputStream.hxx | 1 + ucb/source/ucp/webdav-neon/NeonLockStore.hxx | 1 + ucb/source/ucp/webdav-neon/NeonPropFindRequest.hxx | 1 + ucb/source/ucp/webdav-neon/NeonSession.hxx | 1 + ucb/source/ucp/webdav-neon/NeonTypes.hxx | 1 + ucb/source/ucp/webdav-neon/NeonUri.hxx | 1 + ucb/source/ucp/webdav-neon/PropertyMap.hxx | 1 + ucb/source/ucp/webdav-neon/UCBDeadPropertyValue.cxx | 2 +- ucb/source/ucp/webdav-neon/webdavcontent.hxx | 1 + ucb/source/ucp/webdav-neon/webdavdatasupplier.hxx | 1 + ucb/source/ucp/webdav-neon/webdavprovider.hxx | 1 + ucb/source/ucp/webdav-neon/webdavresultset.hxx | 1 + 34 files changed, 62 insertions(+), 15 deletions(-)
New commits: commit 5f91bce07962f4229242c466144962f9b3d58be6 Author: Michael Meeks <[email protected]> Date: Wed Apr 24 16:20:58 2013 +0100 sdremote - don't crash if we connect during load, before things are setup. Change-Id: I1837ea58b9c8f74aca9afb78bafbab61af189842 diff --git a/sd/source/ui/remotecontrol/Communicator.cxx b/sd/source/ui/remotecontrol/Communicator.cxx index e5459fb..63ace55 100644 --- a/sd/source/ui/remotecontrol/Communicator.cxx +++ b/sd/source/ui/remotecontrol/Communicator.cxx @@ -53,11 +53,15 @@ void Communicator::execute() Receiver aReceiver( pTransmitter ); try { uno::Reference< frame::XDesktop2 > xFramesSupplier = frame::Desktop::create( ::comphelper::getProcessComponentContext() ); - uno::Reference< frame::XFrame > xFrame ( xFramesSupplier->getActiveFrame(), uno::UNO_QUERY_THROW ); - uno::Reference<presentation::XPresentationSupplier> xPS ( xFrame->getController()->getModel(), uno::UNO_QUERY_THROW); - uno::Reference<presentation::XPresentation2> xPresentation( - xPS->getPresentation(), uno::UNO_QUERY_THROW); - if ( xPresentation->isRunning() ) + uno::Reference< frame::XFrame > xFrame ( xFramesSupplier->getActiveFrame(), uno::UNO_QUERY ); + + uno::Reference<presentation::XPresentationSupplier> xPS; + if( xFrame.is() ) + xPS = uno::Reference<presentation::XPresentationSupplier>( xFrame->getController()->getModel(), uno::UNO_QUERY ); + uno::Reference<presentation::XPresentation2> xPresentation; + if( xPS.is() ) + xPresentation = uno::Reference<presentation::XPresentation2>( xPS->getPresentation(), uno::UNO_QUERY ); + if ( xPresentation.is() && xPresentation->isRunning() ) { presentationStarted( xPresentation->getController() ); } commit cb33ae88e000fb6c662ecf31a621a73223dfd081 Author: Michael Meeks <[email protected]> Date: Wed Apr 24 14:52:46 2013 +0100 extend license filtering, and add fallback-checks. Change-Id: Ia1ec3564326cf898d756c231a64a54db8698bf20 diff --git a/config_host/config_lgpl.h.in b/config_host/config_lgpl.h.in new file mode 100644 index 0000000..f81b337 --- /dev/null +++ b/config_host/config_lgpl.h.in @@ -0,0 +1,14 @@ +/* + * Include this file to ensure that this code is not + * compiled into the MPL subset. + */ +#ifndef CONFIG_LGPL_H +#define CONFIG_LGPL_H + +#define MPL_HAVE_SUBSET 0 + +#if MPL_HAVE_SUBSET +# error "Attempting to compile LGPL code into MPL subset" +#endif + +#endif diff --git a/configure.ac b/configure.ac index a002d93..14a721e 100644 --- a/configure.ac +++ b/configure.ac @@ -6944,12 +6944,17 @@ AC_MSG_CHECKING([MPL subset]) MPL_SUBSET= if test "$enable_mpl_subset" = "yes"; then if test "x$enable_postgresql_sdbc" != "xno"; then - AC_MSG_ERROR([need to --disable-postgresql-sdbc.]) + AC_MSG_ERROR([need to --disable-postgresql-sdbc - the postgress database backend.]) fi if test "$enable_lotuswordpro" = "yes"; then - AC_MSG_ERROR([need to --disable-lotuswordpro.]) + AC_MSG_ERROR([need to --disable-lotuswordpro - a Lotus Word Pro file format import filter.]) fi + if test "$enable_neon" != "no"; then + AC_MSG_ERROR([need to --disable-neon - webdav support.]) + fi + MPL_SUBSET="TRUE" + AC_DEFINE(MPL_HAVE_SUBSET) AC_MSG_RESULT([only]) else AC_MSG_RESULT([no restrictions]) @@ -11931,6 +11936,7 @@ AC_CONFIG_HEADERS([config_host/config_features.h]) AC_CONFIG_HEADERS([config_host/config_global.h]) AC_CONFIG_HEADERS([config_host/config_graphite.h]) AC_CONFIG_HEADERS([config_host/config_harfbuzz.h]) +AC_CONFIG_HEADERS([config_host/config_lgpl.h]) AC_CONFIG_HEADERS([config_host/config_kde4.h]) AC_CONFIG_HEADERS([config_host/config_mingw.h]) AC_CONFIG_HEADERS([config_host/config_oox.h]) diff --git a/include/tubes/file-transfer-helper.h b/include/tubes/file-transfer-helper.h index 016aed8..538fed0 100644 --- a/include/tubes/file-transfer-helper.h +++ b/include/tubes/file-transfer-helper.h @@ -24,6 +24,7 @@ #ifndef __EMPATHY_FT_HANDLER_H__ #define __EMPATHY_FT_HANDLER_H__ +#include <config_lgpl.h> #include <glib-object.h> #include <gio/gio.h> diff --git a/lotuswordpro/source/filter/lwpheader.hxx b/lotuswordpro/source/filter/lwpheader.hxx index 37e13c3..0061c64 100644 --- a/lotuswordpro/source/filter/lwpheader.hxx +++ b/lotuswordpro/source/filter/lwpheader.hxx @@ -57,14 +57,11 @@ * @file * For LWP filter architecture prototype ************************************************************************/ -/************************************************************************* - * Change History - Jan 2005 Created - ************************************************************************/ #ifndef _LWPHEADERS_HXX #define _LWPHEADERS_HXX +#include <config_lgpl.h> #include <math.h> #include <vector> #include <memory> diff --git a/ucb/source/ucp/webdav-neon/ContentProperties.hxx b/ucb/source/ucp/webdav-neon/ContentProperties.hxx index 6022439..83ceafb 100644 --- a/ucb/source/ucp/webdav-neon/ContentProperties.hxx +++ b/ucb/source/ucp/webdav-neon/ContentProperties.hxx @@ -29,6 +29,7 @@ #ifndef _WEBDAV_UCP_CONTENTPROPERTIES_HXX #define _WEBDAV_UCP_CONTENTPROPERTIES_HXX +#include <config_lgpl.h> #include <memory> #include <vector> #include <boost/unordered_map.hpp> diff --git a/ucb/source/ucp/webdav-neon/DAVAuthListener.hxx b/ucb/source/ucp/webdav-neon/DAVAuthListener.hxx index 1d9e665..4971a79 100644 --- a/ucb/source/ucp/webdav-neon/DAVAuthListener.hxx +++ b/ucb/source/ucp/webdav-neon/DAVAuthListener.hxx @@ -28,6 +28,7 @@ #ifndef _DAVAUTHLISTENER_HXX_ #define _DAVAUTHLISTENER_HXX_ +#include <config_lgpl.h> #include <salhelper/simplereferenceobject.hxx> #include <rtl/ustring.hxx> diff --git a/ucb/source/ucp/webdav-neon/DAVAuthListenerImpl.hxx b/ucb/source/ucp/webdav-neon/DAVAuthListenerImpl.hxx index 7428c35..a41b64f 100644 --- a/ucb/source/ucp/webdav-neon/DAVAuthListenerImpl.hxx +++ b/ucb/source/ucp/webdav-neon/DAVAuthListenerImpl.hxx @@ -29,6 +29,7 @@ #ifndef _DAVAUTHLISTENERIMPL_HXX_ #define _DAVAUTHLISTENERIMPL_HXX_ +#include <config_lgpl.h> #include "DAVAuthListener.hxx" diff --git a/ucb/source/ucp/webdav-neon/DAVException.hxx b/ucb/source/ucp/webdav-neon/DAVException.hxx index 4c3ab54..4f33de4 100644 --- a/ucb/source/ucp/webdav-neon/DAVException.hxx +++ b/ucb/source/ucp/webdav-neon/DAVException.hxx @@ -29,6 +29,7 @@ #ifndef _DAVEXCEPTION_HXX_ #define _DAVEXCEPTION_HXX_ +#include <config_lgpl.h> #include <rtl/ustring.hxx> namespace webdav_ucp diff --git a/ucb/source/ucp/webdav-neon/DAVProperties.hxx b/ucb/source/ucp/webdav-neon/DAVProperties.hxx index dbd967f..5e8d219 100644 --- a/ucb/source/ucp/webdav-neon/DAVProperties.hxx +++ b/ucb/source/ucp/webdav-neon/DAVProperties.hxx @@ -28,6 +28,7 @@ #ifndef _DAVPROPERTIES_HXX_ #define _DAVPROPERTIES_HXX_ +#include <config_lgpl.h> #include <rtl/ustring.hxx> #include "NeonTypes.hxx" diff --git a/ucb/source/ucp/webdav-neon/DAVRequestEnvironment.hxx b/ucb/source/ucp/webdav-neon/DAVRequestEnvironment.hxx index 3c435ba..72a18b3 100644 --- a/ucb/source/ucp/webdav-neon/DAVRequestEnvironment.hxx +++ b/ucb/source/ucp/webdav-neon/DAVRequestEnvironment.hxx @@ -28,6 +28,7 @@ #ifndef _DAVREQUESTENVIRONMENT_HXX_ #define _DAVREQUESTENVIRONMENT_HXX_ +#include <config_lgpl.h> #include <vector> #include <rtl/ref.hxx> #include "DAVAuthListener.hxx" diff --git a/ucb/source/ucp/webdav-neon/DAVResource.hxx b/ucb/source/ucp/webdav-neon/DAVResource.hxx index eeba4ef..d080393 100644 --- a/ucb/source/ucp/webdav-neon/DAVResource.hxx +++ b/ucb/source/ucp/webdav-neon/DAVResource.hxx @@ -29,6 +29,7 @@ #ifndef _DAVRESOURCE_HXX_ #define _DAVRESOURCE_HXX_ +#include <config_lgpl.h> #include <vector> #include "rtl/ustring.hxx" diff --git a/ucb/source/ucp/webdav-neon/DAVResourceAccess.hxx b/ucb/source/ucp/webdav-neon/DAVResourceAccess.hxx index b4bf18e..c9c0de5 100644 --- a/ucb/source/ucp/webdav-neon/DAVResourceAccess.hxx +++ b/ucb/source/ucp/webdav-neon/DAVResourceAccess.hxx @@ -29,6 +29,7 @@ #ifndef _DAVRESOURCEACCESS_HXX_ #define _DAVRESOURCEACCESS_HXX_ +#include <config_lgpl.h> #include <vector> #include <rtl/ustring.hxx> #include <rtl/ref.hxx> diff --git a/ucb/source/ucp/webdav-neon/DAVSession.hxx b/ucb/source/ucp/webdav-neon/DAVSession.hxx index b5dad24..72e0197 100644 --- a/ucb/source/ucp/webdav-neon/DAVSession.hxx +++ b/ucb/source/ucp/webdav-neon/DAVSession.hxx @@ -29,6 +29,7 @@ #ifndef _DAVSESSION_HXX_ #define _DAVSESSION_HXX_ +#include <config_lgpl.h> #include <memory> #include <rtl/ustring.hxx> #include <com/sun/star/io/XInputStream.hpp> diff --git a/ucb/source/ucp/webdav-neon/DAVSessionFactory.hxx b/ucb/source/ucp/webdav-neon/DAVSessionFactory.hxx index b45ce9f..665cfa2 100644 --- a/ucb/source/ucp/webdav-neon/DAVSessionFactory.hxx +++ b/ucb/source/ucp/webdav-neon/DAVSessionFactory.hxx @@ -31,6 +31,7 @@ #ifdef min #undef min // GNU libstdc++ <memory> includes <limit> which defines methods called min... #endif +#include <config_lgpl.h> #include <map> #include <memory> #include <osl/mutex.hxx> diff --git a/ucb/source/ucp/webdav-neon/DAVTypes.hxx b/ucb/source/ucp/webdav-neon/DAVTypes.hxx index b3da92c..94483ad 100644 --- a/ucb/source/ucp/webdav-neon/DAVTypes.hxx +++ b/ucb/source/ucp/webdav-neon/DAVTypes.hxx @@ -29,6 +29,7 @@ #ifndef _DAVTYPES_HXX_ #define _DAVTYPES_HXX_ +#include <config_lgpl.h> #include <rtl/ustring.hxx> #include <com/sun/star/uno/Any.hxx> diff --git a/ucb/source/ucp/webdav-neon/DateTimeHelper.hxx b/ucb/source/ucp/webdav-neon/DateTimeHelper.hxx index b457bd7..9503520 100644 --- a/ucb/source/ucp/webdav-neon/DateTimeHelper.hxx +++ b/ucb/source/ucp/webdav-neon/DateTimeHelper.hxx @@ -29,6 +29,7 @@ #ifndef _WEBDAV_DATETIME_HELPER_HXX #define _WEBDAV_DATETIME_HELPER_HXX +#include <config_lgpl.h> #include <sal/types.h> namespace com { namespace sun { namespace star { namespace util { diff --git a/ucb/source/ucp/webdav-neon/LinkSequence.cxx b/ucb/source/ucp/webdav-neon/LinkSequence.cxx index 32fafb4..337d662 100644 --- a/ucb/source/ucp/webdav-neon/LinkSequence.cxx +++ b/ucb/source/ucp/webdav-neon/LinkSequence.cxx @@ -26,7 +26,7 @@ * ************************************************************************/ - +#include <config_lgpl.h> #include <string.h> #include <ne_xml.h> diff --git a/ucb/source/ucp/webdav-neon/LockEntrySequence.cxx b/ucb/source/ucp/webdav-neon/LockEntrySequence.cxx index 746ca58..5875913 100644 --- a/ucb/source/ucp/webdav-neon/LockEntrySequence.cxx +++ b/ucb/source/ucp/webdav-neon/LockEntrySequence.cxx @@ -26,7 +26,7 @@ * ************************************************************************/ - +#include <config_lgpl.h> #include <string.h> #include <ne_xml.h> #include "LockEntrySequence.hxx" diff --git a/ucb/source/ucp/webdav-neon/LockSequence.cxx b/ucb/source/ucp/webdav-neon/LockSequence.cxx index 06d501f..93c60fc 100644 --- a/ucb/source/ucp/webdav-neon/LockSequence.cxx +++ b/ucb/source/ucp/webdav-neon/LockSequence.cxx @@ -26,7 +26,7 @@ * ************************************************************************/ - +#include <config_lgpl.h> #include <string.h> #include <ne_xml.h> #include "LockSequence.hxx" diff --git a/ucb/source/ucp/webdav-neon/LockSequence.hxx b/ucb/source/ucp/webdav-neon/LockSequence.hxx index fc9db66..a0083b4 100644 --- a/ucb/source/ucp/webdav-neon/LockSequence.hxx +++ b/ucb/source/ucp/webdav-neon/LockSequence.hxx @@ -29,6 +29,7 @@ #ifndef _LOCKSEQUENCE_HXX_ #define _LOCKSEQUENCE_HXX_ +#include <config_lgpl.h> #include <rtl/string.hxx> #include <com/sun/star/uno/Sequence.hxx> #include <com/sun/star/ucb/Lock.hpp> diff --git a/ucb/source/ucp/webdav-neon/NeonHeadRequest.hxx b/ucb/source/ucp/webdav-neon/NeonHeadRequest.hxx index a328418..bb1a495 100644 --- a/ucb/source/ucp/webdav-neon/NeonHeadRequest.hxx +++ b/ucb/source/ucp/webdav-neon/NeonHeadRequest.hxx @@ -29,6 +29,7 @@ #ifndef _NEONHEADREQUEST_HXX_ #define _NEONHEADREQUEST_HXX_ +#include <config_lgpl.h> #include <vector> #include "NeonTypes.hxx" #include "DAVResource.hxx" diff --git a/ucb/source/ucp/webdav-neon/NeonInputStream.hxx b/ucb/source/ucp/webdav-neon/NeonInputStream.hxx index 83ce42e..558821e 100644 --- a/ucb/source/ucp/webdav-neon/NeonInputStream.hxx +++ b/ucb/source/ucp/webdav-neon/NeonInputStream.hxx @@ -28,6 +28,7 @@ #ifndef _NEONINPUTSTREAM_HXX_ #define _NEONINPUTSTREAM_HXX_ +#include <config_lgpl.h> #include <sal/types.h> #include <rtl/ustring.hxx> #include <cppuhelper/weak.hxx> diff --git a/ucb/source/ucp/webdav-neon/NeonLockStore.hxx b/ucb/source/ucp/webdav-neon/NeonLockStore.hxx index c6bd4f5..dd9b185 100644 --- a/ucb/source/ucp/webdav-neon/NeonLockStore.hxx +++ b/ucb/source/ucp/webdav-neon/NeonLockStore.hxx @@ -28,6 +28,7 @@ #ifndef INCLUDED_NEONLOCKSTORE_HXX #define INCLUDED_NEONLOCKSTORE_HXX +#include <config_lgpl.h> #include <map> #include "warnings_guard_ne_locks.h" #include "osl/mutex.hxx" diff --git a/ucb/source/ucp/webdav-neon/NeonPropFindRequest.hxx b/ucb/source/ucp/webdav-neon/NeonPropFindRequest.hxx index fd71424..6b078f2 100644 --- a/ucb/source/ucp/webdav-neon/NeonPropFindRequest.hxx +++ b/ucb/source/ucp/webdav-neon/NeonPropFindRequest.hxx @@ -29,6 +29,7 @@ #ifndef _NEONPROPFINDREQUEST_HXX_ #define _NEONPROPFINDREQUEST_HXX_ +#include <config_lgpl.h> #include <vector> #include <rtl/ustring.hxx> #include "NeonTypes.hxx" diff --git a/ucb/source/ucp/webdav-neon/NeonSession.hxx b/ucb/source/ucp/webdav-neon/NeonSession.hxx index b01ab99..f62ec00 100644 --- a/ucb/source/ucp/webdav-neon/NeonSession.hxx +++ b/ucb/source/ucp/webdav-neon/NeonSession.hxx @@ -29,6 +29,7 @@ #ifndef _NEONSESSION_HXX_ #define _NEONSESSION_HXX_ +#include <config_lgpl.h> #include <vector> #include <osl/mutex.hxx> #include "DAVSession.hxx" diff --git a/ucb/source/ucp/webdav-neon/NeonTypes.hxx b/ucb/source/ucp/webdav-neon/NeonTypes.hxx index d6c2741..926529f 100644 --- a/ucb/source/ucp/webdav-neon/NeonTypes.hxx +++ b/ucb/source/ucp/webdav-neon/NeonTypes.hxx @@ -29,6 +29,7 @@ #ifndef _NEONTYPES_HXX_ #define _NEONTYPES_HXX_ +#include <config_lgpl.h> #include <ne_session.h> #include <ne_utils.h> #include <ne_basic.h> diff --git a/ucb/source/ucp/webdav-neon/NeonUri.hxx b/ucb/source/ucp/webdav-neon/NeonUri.hxx index 0650a70..2846440 100644 --- a/ucb/source/ucp/webdav-neon/NeonUri.hxx +++ b/ucb/source/ucp/webdav-neon/NeonUri.hxx @@ -28,6 +28,7 @@ #ifndef _NEONURI_HXX_ #define _NEONURI_HXX_ +#include <config_lgpl.h> #include <ne_uri.h> #include <rtl/ustring.hxx> #include <DAVException.hxx> diff --git a/ucb/source/ucp/webdav-neon/PropertyMap.hxx b/ucb/source/ucp/webdav-neon/PropertyMap.hxx index ca1cb03..d274373 100644 --- a/ucb/source/ucp/webdav-neon/PropertyMap.hxx +++ b/ucb/source/ucp/webdav-neon/PropertyMap.hxx @@ -29,6 +29,7 @@ #ifndef _WEBDAV_UCP_PROPERTYMAP_HXX #define _WEBDAV_UCP_PROPERTYMAP_HXX +#include <config_lgpl.h> #include <boost/unordered_set.hpp> #include <com/sun/star/beans/Property.hpp> diff --git a/ucb/source/ucp/webdav-neon/UCBDeadPropertyValue.cxx b/ucb/source/ucp/webdav-neon/UCBDeadPropertyValue.cxx index 8a7cdec..4912412 100644 --- a/ucb/source/ucp/webdav-neon/UCBDeadPropertyValue.cxx +++ b/ucb/source/ucp/webdav-neon/UCBDeadPropertyValue.cxx @@ -26,7 +26,7 @@ * ************************************************************************/ - +#include <config_lgpl.h> #include <string.h> #include <ne_xml.h> #include <osl/diagnose.h> diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.hxx b/ucb/source/ucp/webdav-neon/webdavcontent.hxx index ca97b6d..74140fd 100644 --- a/ucb/source/ucp/webdav-neon/webdavcontent.hxx +++ b/ucb/source/ucp/webdav-neon/webdavcontent.hxx @@ -29,6 +29,7 @@ #ifndef _WEBDAV_UCP_CONTENT_HXX #define _WEBDAV_UCP_CONTENT_HXX +#include <config_lgpl.h> #include <memory> #include <list> #include <rtl/ref.hxx> diff --git a/ucb/source/ucp/webdav-neon/webdavdatasupplier.hxx b/ucb/source/ucp/webdav-neon/webdavdatasupplier.hxx index 6d9be6b8..a48b6b6 100644 --- a/ucb/source/ucp/webdav-neon/webdavdatasupplier.hxx +++ b/ucb/source/ucp/webdav-neon/webdavdatasupplier.hxx @@ -29,6 +29,7 @@ #ifndef WEBDAV_UCP_DATASUPPLIER_HXX #define WEBDAV_UCP_DATASUPPLIER_HXX +#include <config_lgpl.h> #include <vector> #include <boost/scoped_ptr.hpp> #include <rtl/ref.hxx> diff --git a/ucb/source/ucp/webdav-neon/webdavprovider.hxx b/ucb/source/ucp/webdav-neon/webdavprovider.hxx index 1e4b273..afd8ee7 100644 --- a/ucb/source/ucp/webdav-neon/webdavprovider.hxx +++ b/ucb/source/ucp/webdav-neon/webdavprovider.hxx @@ -29,6 +29,7 @@ #ifndef _WEBDAV_UCP_PROVIDER_HXX #define _WEBDAV_UCP_PROVIDER_HXX +#include <config_lgpl.h> #include <rtl/ref.hxx> #include <com/sun/star/beans/Property.hpp> #include "DAVSessionFactory.hxx" diff --git a/ucb/source/ucp/webdav-neon/webdavresultset.hxx b/ucb/source/ucp/webdav-neon/webdavresultset.hxx index c27cc5e..d3dbf90 100644 --- a/ucb/source/ucp/webdav-neon/webdavresultset.hxx +++ b/ucb/source/ucp/webdav-neon/webdavresultset.hxx @@ -29,6 +29,7 @@ #ifndef _WEBDAV_UCP_RESULTSET_HXX #define _WEBDAV_UCP_RESULTSET_HXX +#include <config_lgpl.h> #include <rtl/ref.hxx> #include <ucbhelper/resultsethelper.hxx> #include "webdavcontent.hxx" _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
