[Libreoffice-commits] .: configmgr/source ucb/source

Michael Meeks mmeeks at kemper.freedesktop.org
Thu Oct 14 14:11:16 PDT 2010


 configmgr/source/xmlreader.cxx                    |    1 +
 ucb/source/ucp/ext/ucpext_content.cxx             |    1 +
 ucb/source/ucp/gvfs/gvfs_content.cxx              |    3 ++-
 ucb/source/ucp/hierarchy/hierarchycontentcaps.cxx |    1 +
 ucb/source/ucp/package/pkgcontentcaps.cxx         |    1 +
 ucb/source/ucp/tdoc/tdoc_contentcaps.cxx          |   22 +++++++++++-----------
 6 files changed, 17 insertions(+), 12 deletions(-)

New commits:
commit 9382c042573d431e071678df7827df7251a51f20
Author: Michael Meeks <michael.meeks at novell.com>
Date:   Thu Oct 14 22:10:14 2010 +0100

    include correct sal/macros.h header to compile.

diff --git a/configmgr/source/xmlreader.cxx b/configmgr/source/xmlreader.cxx
index 4865c87..49963ca 100644
--- a/configmgr/source/xmlreader.cxx
+++ b/configmgr/source/xmlreader.cxx
@@ -28,6 +28,7 @@
 
 #include "precompiled_configmgr.hxx"
 #include "sal/config.h"
+#include "sal/macros.h"
 
 #include <cstddef>
 
diff --git a/ucb/source/ucp/ext/ucpext_content.cxx b/ucb/source/ucp/ext/ucpext_content.cxx
index 666ceb8..be43b50 100644
--- a/ucb/source/ucp/ext/ucpext_content.cxx
+++ b/ucb/source/ucp/ext/ucpext_content.cxx
@@ -62,6 +62,7 @@
 #include <comphelper/componentcontext.hxx>
 #include <rtl/ustrbuf.hxx>
 #include <rtl/uri.hxx>
+#include <sal/macros.h>
 
 #include <algorithm>
 
diff --git a/ucb/source/ucp/gvfs/gvfs_content.cxx b/ucb/source/ucp/gvfs/gvfs_content.cxx
index 1009e24..c520bd3 100644
--- a/ucb/source/ucp/gvfs/gvfs_content.cxx
+++ b/ucb/source/ucp/gvfs/gvfs_content.cxx
@@ -32,7 +32,8 @@
 #include <unistd.h>
 #include <sys/types.h>
 
-#include "osl/time.h"
+#include <sal/macros.h>
+#include <osl/time.h>
 #include <osl/diagnose.h>
 
 #include "osl/doublecheckedlocking.h"
diff --git a/ucb/source/ucp/hierarchy/hierarchycontentcaps.cxx b/ucb/source/ucp/hierarchy/hierarchycontentcaps.cxx
index 91410b3..f5d0912 100644
--- a/ucb/source/ucp/hierarchy/hierarchycontentcaps.cxx
+++ b/ucb/source/ucp/hierarchy/hierarchycontentcaps.cxx
@@ -66,6 +66,7 @@
 #include <com/sun/star/ucb/OpenCommandArgument2.hpp>
 #include <com/sun/star/ucb/TransferInfo.hpp>
 #include <com/sun/star/uno/Sequence.hxx>
+#include <sal/macros.h>
 #include "hierarchycontent.hxx"
 
 using namespace com::sun::star;
diff --git a/ucb/source/ucp/package/pkgcontentcaps.cxx b/ucb/source/ucp/package/pkgcontentcaps.cxx
index 28bd56d..276e47f 100644
--- a/ucb/source/ucp/package/pkgcontentcaps.cxx
+++ b/ucb/source/ucp/package/pkgcontentcaps.cxx
@@ -67,6 +67,7 @@
 #include <com/sun/star/ucb/OpenCommandArgument2.hpp>
 #include <com/sun/star/ucb/TransferInfo.hpp>
 #include <com/sun/star/uno/Sequence.hxx>
+#include <sal/macros.h>
 #include "pkgcontent.hxx"
 
 using namespace com::sun::star;
diff --git a/ucb/source/ucp/tdoc/tdoc_contentcaps.cxx b/ucb/source/ucp/tdoc/tdoc_contentcaps.cxx
index d8aa7e1..dbc6117 100644
--- a/ucb/source/ucp/tdoc/tdoc_contentcaps.cxx
+++ b/ucb/source/ucp/tdoc/tdoc_contentcaps.cxx
@@ -64,16 +64,16 @@
 
  *************************************************************************/
 
-#include "com/sun/star/beans/Property.hpp"
-#include "com/sun/star/beans/PropertyAttribute.hpp"
-#include "com/sun/star/beans/PropertyValue.hpp"
-#include "com/sun/star/embed/XStorage.hpp"
-#include "com/sun/star/frame/XModel.hpp"
-#include "com/sun/star/ucb/CommandInfo.hpp"
-#include "com/sun/star/ucb/OpenCommandArgument2.hpp"
-#include "com/sun/star/ucb/TransferInfo.hpp"
-
-#include "tdoc_content.hxx"
+#include <com/sun/star/beans/Property.hpp>
+#include <com/sun/star/beans/PropertyAttribute.hpp>
+#include <com/sun/star/beans/PropertyValue.hpp>
+#include <com/sun/star/embed/XStorage.hpp>
+#include <com/sun/star/frame/XModel.hpp>
+#include <com/sun/star/ucb/CommandInfo.hpp>
+#include <com/sun/star/ucb/OpenCommandArgument2.hpp>
+#include <com/sun/star/ucb/TransferInfo.hpp>
+#include <sal/macros.h>
+#include <tdoc_content.hxx>
 
 namespace com { namespace sun { namespace star { namespace embed {
     class XStorage;
@@ -89,7 +89,7 @@ using namespace tdoc_ucp;
 //=========================================================================
 
 #define MAKEPROPSEQUENCE( a ) \
-    uno::Sequence< beans::Property >( a, SAL_N_ELEMTS( a ) )
+    uno::Sequence< beans::Property >( a, SAL_N_ELEMENTS( a ) )
 
 #define MAKECMDSEQUENCE( a ) \
     uno::Sequence< ucb::CommandInfo >( a, SAL_N_ELEMENTS( a ) )


More information about the Libreoffice-commits mailing list