[Libreoffice-commits] core.git: Branch 'aoo/trunk' - cppuhelper/source

Herbert Dürr hdu at apache.org
Mon Dec 2 02:07:55 PST 2013


 cppuhelper/source/makefile.mk   |    2 +-
 cppuhelper/source/primeweak.cxx |    2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

New commits:
commit ab750a7cd92c8cdaaceaaf5869edb3dd3c38758d
Author: Herbert Dürr <hdu at apache.org>
Date:   Mon Dec 2 09:42:08 2013 +0000

    #i122195# XContentEnumerationAccess is needed in UNO bootstrapping
    
    stoc's OServiceManager has it as a base class so we really need
    XContentEnumerationAccess' "comprehensive" type description early.
    WeakMap priming enforces that now.

diff --git a/cppuhelper/source/makefile.mk b/cppuhelper/source/makefile.mk
index f21cd2c..52f939f 100644
--- a/cppuhelper/source/makefile.mk
+++ b/cppuhelper/source/makefile.mk
@@ -60,6 +60,7 @@ UNOTYPES= \
         com.sun.star.bridge.UnoUrlResolver \
         com.sun.star.bridge.XUnoUrlResolver \
         com.sun.star.connection.SocketPermission \
+        com.sun.star.container.XContentEnumerationAccess \
         com.sun.star.container.XElementAccess \
         com.sun.star.container.XEnumerationAccess \
         com.sun.star.container.XHierarchicalNameAccess \
@@ -177,7 +178,6 @@ SHL1VERSIONMAP=msvc_win32_intel.map
 SHL1VERSIONMAP=cc5_solaris_sparc.map
 .ELIF "$(GUI)$(COMNAME)"=="OS2gcc3"
 SHL1VERSIONMAP=gcc3os2.map
-#.ELIF "$(COMNAME)"=="gcc3" || "$(COMNAME)"=="Clang"
 .ELSE
 SHL1VERSIONMAP=gcc3.map
 .ENDIF
diff --git a/cppuhelper/source/primeweak.cxx b/cppuhelper/source/primeweak.cxx
index d17903e..8b65d52 100644
--- a/cppuhelper/source/primeweak.cxx
+++ b/cppuhelper/source/primeweak.cxx
@@ -64,6 +64,7 @@
 #include "cppuhelper/com/sun/star/beans/PropertyValue.hpp"
 #include "cppuhelper/com/sun/star/beans/XPropertySet.hpp"
 #include "cppuhelper/com/sun/star/beans/XMultiPropertySet.hpp"
+#include "cppuhelper/com/sun/star/container/XContentEnumerationAccess.hpp"
 #include "cppuhelper/com/sun/star/container/XEnumerationAccess.hpp"
 #include "cppuhelper/com/sun/star/container/XEnumeration.hpp"
 #include "cppuhelper/com/sun/star/container/XNameAccess.hpp"
@@ -117,6 +118,7 @@ void primeWeakMap( void)
     InitTypeDesc( com::sun::star::container::XElementAccess );
     InitTypeDesc( com::sun::star::container::XEnumeration );
     InitTypeDesc( com::sun::star::container::XEnumerationAccess );
+    InitTypeDesc( com::sun::star::container::XContentEnumerationAccess );
     InitTypeDesc( com::sun::star::container::XHierarchicalNameAccess );
     InitTypeDesc( com::sun::star::container::XNameAccess );
     InitTypeDesc( com::sun::star::container::XNameReplace );


More information about the Libreoffice-commits mailing list