diff options
author | Daniel Boelzle <dbo@openoffice.org> | 2000-11-15 16:54:31 +0000 |
---|---|---|
committer | Daniel Boelzle <dbo@openoffice.org> | 2000-11-15 16:54:31 +0000 |
commit | 0686cd566de4380b5d7e414d11d266e47f234b56 (patch) | |
tree | b5f96ebd6cf520e90b435a338722ae7ad95880ff /stoc | |
parent | 3674ddbd0e973d1983685fc5a5d42179cfda4896 (diff) |
proxy factory moved from util to reflection
Diffstat (limited to 'stoc')
-rw-r--r-- | stoc/test/makefile.mk | 6 | ||||
-rw-r--r-- | stoc/test/testproxyfac.cxx | 10 |
2 files changed, 8 insertions, 8 deletions
diff --git a/stoc/test/makefile.mk b/stoc/test/makefile.mk index 4b0220b03ebb..837f3ec98084 100644 --- a/stoc/test/makefile.mk +++ b/stoc/test/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.3 $ +# $Revision: 1.4 $ # -# last change: $Author: dbo $ $Date: 2000-11-13 10:50:34 $ +# last change: $Author: dbo $ $Date: 2000-11-15 17:54:31 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -221,7 +221,7 @@ TESTCOREFL:=ModuleC;ModuleC.XInterfaceA;ModuleC.XInterfaceB;ModuleA.XInterface1; TESTIADAPTER:=com.sun.star.beans.XIntrospection;com.sun.star.beans.MethodConcept;com.sun.star.beans.XExactName;com.sun.star.lang.XTypeProvider;com.sun.star.uno.XAggregation;com.sun.star.script.XInvocationAdapterFactory;com.sun.star.script.XInvocation;com.sun.star.lang.XMultiServiceFactory;com.sun.star.registry.XSimpleRegistry;com.sun.star.lang.XInitialization;test.XLanguageBindingTest TESTINTROSP:=ModuleA;ModuleA.XIntroTest;com.sun.star.beans.XPropertySet;com.sun.star.container.XIndexAccess;com.sun.star.container.XNameAccess;com.sun.star.beans.PropertyAttribute;com.sun.star.beans.PropertyConcept TESTCONV:=com.sun.star.script.XTypeConverter -TESTPROXYFAC:=com.sun.star.util.XProxyFactory +TESTPROXYFAC:=com.sun.star.reflection.XProxyFactory $(BIN)$/stoctest.rdb: $(ALLIDLFILES) +unoidl -I$(PRJ) -I$(SOLARIDLDIR) -Burd -OH$(BIN) $? diff --git a/stoc/test/testproxyfac.cxx b/stoc/test/testproxyfac.cxx index 61772e08be74..e87e00cadbc2 100644 --- a/stoc/test/testproxyfac.cxx +++ b/stoc/test/testproxyfac.cxx @@ -2,9 +2,9 @@ * * $RCSfile: testproxyfac.cxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 15:29:36 $ + * last change: $Author: dbo $ $Date: 2000-11-15 17:54:31 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -72,7 +72,7 @@ #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/registry/XSimpleRegistry.hpp> #include <com/sun/star/registry/XImplementationRegistration.hpp> -#include <com/sun/star/util/XProxyFactory.hpp> +#include <com/sun/star/reflection/XProxyFactory.hpp> #include <rtl/ustrbuf.hxx> @@ -83,7 +83,7 @@ using namespace rtl; using namespace cppu; using namespace osl; using namespace com::sun::star::uno; -using namespace com::sun::star::util; +using namespace com::sun::star::reflection; using namespace com::sun::star::lang; using namespace com::sun::star::registry; @@ -222,7 +222,7 @@ int __cdecl main( int argc, char * argv[] ) xImplReg->registerImplementation( OUString::createFromAscii("com.sun.star.loader.SharedLibrary"), aLibName, Reference< XSimpleRegistry >() ); - Reference< XProxyFactory > xProxyFac( xMgr->createInstance( OUString::createFromAscii("com.sun.star.util.ProxyFactory") ), UNO_QUERY ); + Reference< XProxyFactory > xProxyFac( xMgr->createInstance( OUString::createFromAscii("com.sun.star.reflection.ProxyFactory") ), UNO_QUERY ); OSL_ENSHURE( xProxyFac.is(), "### no proxy factory!" ); bSucc = test_proxyfac( xProxyFac ); |