diff options
author | Andreas Schlüns <as@openoffice.org> | 2001-02-26 07:45:23 +0000 |
---|---|---|
committer | Andreas Schlüns <as@openoffice.org> | 2001-02-26 07:45:23 +0000 |
commit | ca5ed63e3f40581b7efe3c2444922a38fd456fb0 (patch) | |
tree | ca617b24dbe99a5a5c0f42f062115f53213141c0 /framework | |
parent | 3d80e789f513e81eb5961126d0c1ba488a423a5e (diff) |
add typecfg.cxx for filtercache debug
Diffstat (limited to 'framework')
-rw-r--r-- | framework/test/makefile.mk | 33 | ||||
-rw-r--r-- | framework/test/test.cxx | 6 |
2 files changed, 33 insertions, 6 deletions
diff --git a/framework/test/makefile.mk b/framework/test/makefile.mk index 665495e01009..7cd6cc697172 100644 --- a/framework/test/makefile.mk +++ b/framework/test/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.2 $ +# $Revision: 1.3 $ # -# last change: $Author: as $ $Date: 2000-11-23 14:52:13 $ +# last change: $Author: as $ $Date: 2001-02-26 08:45:23 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -78,7 +78,7 @@ NO_BSYMBOLIC= TRUE LINKFLAGS+=/SEGMENTS:1024 /PACKD:32768 .ENDIF -# --- Applikation -------------------------------------------------- +# --- Test Applikation -------------------------------------------------- APP1TARGET= $(TARGET) @@ -106,6 +106,33 @@ APP1DEPN= $(SLB)$/fwk_helper.lib \ APP1DEF= $(MISC)$/test.def .ENDIF +# --- TypeCFG Applikation -------------------------------------------------- + +APP2TARGET= typecfg + +APP2OBJS= $(SLO)$/typecfg.obj \ + $(SLO)$/servicemanager.obj \ + $(SLO)$/filtercache.obj \ + $(SLO)$/wildcard.obj + +APP2STDLIBS= $(CPPULIB) \ + $(CPPUHELPERLIB) \ + $(OSLLIB) \ + $(SALLIB) \ + $(VOSLIB) \ + $(TOOLSLIB) \ + $(SVTOOLLIB) \ + $(TKLIB) \ + $(COMPHELPERLIB) \ + $(SVLIB) + +APP2DEPN= $(SLO)$/servicemanager.obj \ + $(SLO)$/filtercache.obj + +.IF "$(GUI)"=="WIN" || "$(GUI)"=="OS2" +APP2DEF= $(MISC)$/typecfg.def +.ENDIF + # --- Targets ------------------------------------------------------ .INCLUDE : target.mk diff --git a/framework/test/test.cxx b/framework/test/test.cxx index 36cab5c21d0e..8d793cda5bf9 100644 --- a/framework/test/test.cxx +++ b/framework/test/test.cxx @@ -2,9 +2,9 @@ * * $RCSfile: test.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: as $ $Date: 2001-02-07 12:28:04 $ + * last change: $Author: as $ $Date: 2001-02-26 08:45:23 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -325,7 +325,7 @@ void TestApplication::Main() // Init global servicemanager and set it. ServiceManager aManager; - m_xFactory = aManager.getManager( DECLARE_ASCII("test.rdb") ); + m_xFactory = aManager.getPrivateUNOServiceManager( DECLARE_ASCII("test.rdb") ); setProcessServiceFactory( m_xFactory ); // Control sucess of operation. |