diff options
author | Noel Grandin <noel@peralex.com> | 2012-09-13 13:30:07 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-09-17 14:28:22 +0200 |
commit | 900d60b3cd648be79aaaa84c992edf9953c0c7f9 (patch) | |
tree | 8d2c6eb55fa57ee8917b6f2c27663ad92a17f2ad /binaryurp | |
parent | e3c05e34fddcecb81a8bd1f625ebcd601a0c0238 (diff) |
fdo#46808, Adapt bridge::BridgeFactory UNO service to new style
Create a merged XBridgeFactory2 interface for this service to implement.
Which is backwards-compatible, but does not require creating a new service.
Change-Id: I7309f4d30f0e772bc203c701eb3407b920ffafcc
Diffstat (limited to 'binaryurp')
-rw-r--r-- | binaryurp/source/bridgefactory.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binaryurp/source/bridgefactory.hxx b/binaryurp/source/bridgefactory.hxx index c08209247a86..a949e636402e 100644 --- a/binaryurp/source/bridgefactory.hxx +++ b/binaryurp/source/bridgefactory.hxx @@ -26,7 +26,7 @@ #include <map> #include "boost/noncopyable.hpp" -#include "com/sun/star/bridge/XBridgeFactory.hpp" +#include "com/sun/star/bridge/XBridgeFactory2.hpp" #include "com/sun/star/lang/XServiceInfo.hpp" #include "com/sun/star/uno/Exception.hpp" #include "com/sun/star/uno/Reference.hxx" @@ -50,7 +50,7 @@ namespace binaryurp { typedef cppu::WeakComponentImplHelper2< com::sun::star::lang::XServiceInfo, - com::sun::star::bridge::XBridgeFactory > + com::sun::star::bridge::XBridgeFactory2 > BridgeFactoryBase; class BridgeFactory: |