summaryrefslogtreecommitdiff
path: root/stoc/test/testloader.cxx
diff options
context:
space:
mode:
authorJoachim Lingner <jl@openoffice.org>2001-03-19 09:39:31 +0000
committerJoachim Lingner <jl@openoffice.org>2001-03-19 09:39:31 +0000
commit39a616126fc1489702e9b7f2c00047565010e18a (patch)
tree0b3f6596e20dbb9a2e6e1604ac3a21edf2663991 /stoc/test/testloader.cxx
parenta00fdd238546f0b133ed729dddfb33fe6190381a (diff)
removed vos dependencies
Diffstat (limited to 'stoc/test/testloader.cxx')
-rw-r--r--stoc/test/testloader.cxx17
1 files changed, 7 insertions, 10 deletions
diff --git a/stoc/test/testloader.cxx b/stoc/test/testloader.cxx
index 412ac46e0aa2..8970ec4d689c 100644
--- a/stoc/test/testloader.cxx
+++ b/stoc/test/testloader.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: testloader.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: jl $ $Date: 2001-03-12 17:19:49 $
+ * last change: $Author: jl $ $Date: 2001-03-19 10:39:31 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -61,9 +61,10 @@
#include <stdio.h>
-#ifndef _VOS_MODULE_HXX_
-#include <vos/module.hxx>
+#ifndef _OSL_MODULE_H_
+#include <osl/module.hxx>
#endif
+
#ifndef _OSL_DIAGNOSE_H_
#include <osl/diagnose.h>
#endif
@@ -77,10 +78,6 @@
#include <cppuhelper/factory.hxx>
#endif
-#ifndef _VOS_DYNLOAD_HXX_
-#include <vos/dynload.hxx>
-#endif
-
#if defined ( UNX ) || defined ( MAC )
#include <limits.h>
#define _MAX_PATH PATH_MAX
@@ -89,7 +86,7 @@
using namespace com::sun::star::uno;
using namespace com::sun::star::loader;
using namespace com::sun::star::lang;
-using namespace vos;
+using namespace osl;
using namespace rtl;
#ifdef _DEBUG
@@ -106,7 +103,7 @@ int _cdecl main( int argc, char * argv[] )
{
Reference<XInterface> xIFace;
- OModule* pModule = new OModule(OUString());
+ Module* pModule = new Module(OUString());
#ifdef SAL_W32
OUString dllName( OUString::createFromAscii("cpld.dll") );