summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Budischewski <jbu@openoffice.org>2001-03-15 16:58:02 +0000
committerJörg Budischewski <jbu@openoffice.org>2001-03-15 16:58:02 +0000
commit19ab08b407734b90cb8517bc69b41b60cb6382dc (patch)
treed3100712544cefce4284857783000a5ff03fcf11
parente3d929a64b2d849c100fda74eeb1eecb70186c5c (diff)
removed vos
-rw-r--r--io/test/stm/datatest.cxx6
-rw-r--r--io/test/stm/marktest.cxx7
-rw-r--r--io/test/stm/pipetest.cxx12
3 files changed, 9 insertions, 16 deletions
diff --git a/io/test/stm/datatest.cxx b/io/test/stm/datatest.cxx
index 353d5b23b88e..0a2063b1ec45 100644
--- a/io/test/stm/datatest.cxx
+++ b/io/test/stm/datatest.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: datatest.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: jl $ $Date: 2001-03-12 15:53:51 $
+ * last change: $Author: jbu $ $Date: 2001-03-15 17:58:02 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -80,8 +80,6 @@
#include <osl/conditn.hxx>
#include <osl/mutex.hxx>
-//#include <vos/thread.hxx>
-
#include <assert.h>
#include <string.h>
diff --git a/io/test/stm/marktest.cxx b/io/test/stm/marktest.cxx
index c2ca919f43e5..049acd15c23d 100644
--- a/io/test/stm/marktest.cxx
+++ b/io/test/stm/marktest.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: marktest.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: jbu $ $Date: 2000-12-08 11:07:33 $
+ * last change: $Author: jbu $ $Date: 2001-03-15 17:58:02 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -74,15 +74,12 @@
#include <osl/conditn.hxx>
#include <osl/mutex.hxx>
-#include <vos/thread.hxx>
-
#include <assert.h>
#include <string.h>
using namespace ::rtl;
using namespace ::osl;
using namespace ::cppu;
-using namespace ::vos;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::io;
using namespace ::com::sun::star::lang;
diff --git a/io/test/stm/pipetest.cxx b/io/test/stm/pipetest.cxx
index 5f61df39e822..e11aa3fe081c 100644
--- a/io/test/stm/pipetest.cxx
+++ b/io/test/stm/pipetest.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: pipetest.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 17:24:19 $
+ * last change: $Author: jbu $ $Date: 2001-03-15 17:58:02 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -73,8 +73,7 @@
#include <osl/conditn.hxx>
#include <osl/mutex.hxx>
-
-#include <vos/thread.hxx>
+#include <osl/thread.hxx>
#include <assert.h>
#include <string.h>
@@ -82,7 +81,6 @@
using namespace ::rtl;
using namespace ::osl;
using namespace ::cppu;
-using namespace ::vos;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::io;
using namespace ::com::sun::star::lang;
@@ -95,7 +93,7 @@ using namespace ::com::sun::star::test;
class WriteToStreamThread :
- public OThread
+ public Thread
{
public:
@@ -398,7 +396,7 @@ void OPipeTest::testMultithreading( const Reference < XInterface > &r )
Sequence<sal_Int8> seqRead;
// deletes itself
- OThread *p = new WriteToStreamThread( output, iMax );
+ Thread *p = new WriteToStreamThread( output, iMax );
ERROR_ASSERT( p , "couldn't create thread for testing !\n" );