summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoachim Lingner <jl@openoffice.org>2001-03-14 08:31:19 +0000
committerJoachim Lingner <jl@openoffice.org>2001-03-14 08:31:19 +0000
commit0c7de5cb8e0d5a2e61dbdc64402c1f6febc12dbb (patch)
tree7a1bd56ad94c77453fb6aa6ddd18cb150fc552e5
parentbd6372e636a1edf13f6c433de4c5c4b5045a5e4d (diff)
#include <osl/time.h> added
-rw-r--r--bridges/source/remote/urp/urp_writer.cxx7
-rw-r--r--bridges/test/testclient.cxx8
-rw-r--r--bridges/test/testcomp.cxx8
-rw-r--r--bridges/test/testoffice.cxx8
-rw-r--r--bridges/test/testsameprocess.cxx8
-rw-r--r--bridges/test/testserver.cxx8
-rw-r--r--cppu/test/testthreadpool.cxx8
-rw-r--r--io/test/stm/pumptest.cxx8
-rw-r--r--io/test/testconnection.cxx8
9 files changed, 53 insertions, 18 deletions
diff --git a/bridges/source/remote/urp/urp_writer.cxx b/bridges/source/remote/urp/urp_writer.cxx
index 3a616909491d..96d5548b2d96 100644
--- a/bridges/source/remote/urp/urp_writer.cxx
+++ b/bridges/source/remote/urp/urp_writer.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: urp_writer.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: jl $ $Date: 2001-03-12 14:43:35 $
+ * last change: $Author: jl $ $Date: 2001-03-14 09:25:39 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -62,6 +62,9 @@
#include <stdio.h>
//#include <vos/thread.hxx>
+#ifndef _OSL_TIME_H_
+#include <osl/time.h>
+#endif
#include <osl/mutex.hxx>
#include <osl/conditn.h>
diff --git a/bridges/test/testclient.cxx b/bridges/test/testclient.cxx
index cb27f2e0058d..a99ebbe15711 100644
--- a/bridges/test/testclient.cxx
+++ b/bridges/test/testclient.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: testclient.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: mfe $ $Date: 2001-02-01 13:03:37 $
+ * last change: $Author: jl $ $Date: 2001-03-14 09:25:39 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -61,6 +61,10 @@
#include <string.h>
#include <assert.h>
+#ifndef _OSL_TIME_H_
+#include <osl/time.h>
+#endif
+
#include <osl/mutex.hxx>
#include <osl/module.h>
#include <osl/thread.h>
diff --git a/bridges/test/testcomp.cxx b/bridges/test/testcomp.cxx
index f4d74cc12494..a632e77de2df 100644
--- a/bridges/test/testcomp.cxx
+++ b/bridges/test/testcomp.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: testcomp.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 15:28:51 $
+ * last change: $Author: jl $ $Date: 2001-03-14 09:25:39 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -62,6 +62,10 @@
#include <string.h>
#include <stdlib.h>
+#ifndef _OSL_TIME_H_
+#include <osl/time.h>
+#endif
+
#include <uno/threadpool.h>
#include <osl/mutex.hxx>
diff --git a/bridges/test/testoffice.cxx b/bridges/test/testoffice.cxx
index 91c1b1046a09..1316f7320d66 100644
--- a/bridges/test/testoffice.cxx
+++ b/bridges/test/testoffice.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: testoffice.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: mfe $ $Date: 2001-02-01 13:03:37 $
+ * last change: $Author: jl $ $Date: 2001-03-14 09:25:39 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,6 +60,10 @@
************************************************************************/
#include <assert.h>
+#ifndef _OSL_TIME_H_
+#include <osl/time.h>
+#endif
+
#include <osl/mutex.hxx>
#include <osl/thread.h>
diff --git a/bridges/test/testsameprocess.cxx b/bridges/test/testsameprocess.cxx
index 5a3567d61dcc..95de5c96a213 100644
--- a/bridges/test/testsameprocess.cxx
+++ b/bridges/test/testsameprocess.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: testsameprocess.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: jbu $ $Date: 2000-09-29 12:13:27 $
+ * last change: $Author: jl $ $Date: 2001-03-14 09:25:39 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,6 +60,10 @@
************************************************************************/
#include <assert.h>
+#ifndef _OSL_TIME_H_
+#include <osl/time.h>
+#endif
+
#include <osl/mutex.hxx>
#include <osl/thread.h>
diff --git a/bridges/test/testserver.cxx b/bridges/test/testserver.cxx
index 5ec303113119..43a1584c6fa2 100644
--- a/bridges/test/testserver.cxx
+++ b/bridges/test/testserver.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: testserver.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: mfe $ $Date: 2001-02-01 13:03:37 $
+ * last change: $Author: jl $ $Date: 2001-03-14 09:25:39 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -61,6 +61,10 @@
#include <string.h>
#include <assert.h>
+#ifndef _OSL_TIME_H_
+#include <osl/time.h>
+#endif
+
#include <osl/mutex.hxx>
#include <osl/conditn.h>
diff --git a/cppu/test/testthreadpool.cxx b/cppu/test/testthreadpool.cxx
index 6910091dd111..0cd90ed12d8f 100644
--- a/cppu/test/testthreadpool.cxx
+++ b/cppu/test/testthreadpool.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: testthreadpool.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: jl $ $Date: 2001-03-12 13:28:14 $
+ * last change: $Author: jl $ $Date: 2001-03-14 09:28:08 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,6 +60,10 @@
************************************************************************/
#include <osl/diagnose.h>
+#ifndef _OSL_TIME_H_
+#include <osl/time.h>
+#endif
+
#include <rtl/uuid.h>
#include <uno/threadpool.h>
diff --git a/io/test/stm/pumptest.cxx b/io/test/stm/pumptest.cxx
index ac4fa20ec4fc..13d34a56a9f9 100644
--- a/io/test/stm/pumptest.cxx
+++ b/io/test/stm/pumptest.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: pumptest.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: armin $ $Date: 2001-03-08 09:27:01 $
+ * last change: $Author: jl $ $Date: 2001-03-14 09:31:19 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,6 +60,10 @@
************************************************************************/
#include <stdio.h>
+#ifndef _OSL_TIME_H_
+#include <osl/time.h>
+#endif
+
#include <osl/diagnose.h>
#include <com/sun/star/test/XSimpleTest.hpp>
diff --git a/io/test/testconnection.cxx b/io/test/testconnection.cxx
index 31a00110aad4..c5017a838843 100644
--- a/io/test/testconnection.cxx
+++ b/io/test/testconnection.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: testconnection.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: jl $ $Date: 2001-03-12 15:53:24 $
+ * last change: $Author: jl $ $Date: 2001-03-14 09:31:18 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,6 +60,10 @@
************************************************************************/
#include <stdio.h>
+#ifndef _OSL_TIME_H_
+#include <osl/time.h>
+#endif
+
#include <osl/diagnose.h>
#include <vos/thread.hxx>