summaryrefslogtreecommitdiff
path: root/io
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
commit71a8169bbaedbfff70bd188d14c24c167896db18 (patch)
treea585d974aa6cc0f12ae2032531b3c098f50e8fbe /io
parent5cce0d1bef2d15fb324a8d14255801823ee01160 (diff)
removed vos
Diffstat (limited to 'io')
-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 4c630fd1f..5b835efd0 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 d9755777d..1d2641296 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 6afad4615..a33fbd2e7 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" );