diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-11-26 13:29:58 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-11-26 13:29:58 +0000 |
commit | 5606137970711ebc1ec3b72d1fc1948106f68615 (patch) | |
tree | 4f94a8f8ee192648bd1b0d6d1a4519205b556346 /framework | |
parent | 1c8fe88ee176d82799b1e030b373e02bcc6abbe4 (diff) |
INTEGRATION: CWS recovery04 (1.2.324); FILE MERGED
2004/10/21 05:10:52 as 1.2.324.1: fix some compile errors
Diffstat (limited to 'framework')
-rw-r--r-- | framework/inc/threadhelp/gate.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/inc/threadhelp/gate.hxx b/framework/inc/threadhelp/gate.hxx index 810ee95b4f86..3aaa80076761 100644 --- a/framework/inc/threadhelp/gate.hxx +++ b/framework/inc/threadhelp/gate.hxx @@ -2,9 +2,9 @@ * * $RCSfile: gate.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: as $ $Date: 2001-06-11 10:23:00 $ + * last change: $Author: rt $ $Date: 2004-11-26 14:29:58 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -270,7 +270,7 @@ class Gate : public IGate // and if we hold the access lock nobody else can use this object without a dadlock! aLock.clear(); // Wait for opening gate ... - bSuccessful = ( m_aPassage.wait( pTimeOut ) == osl_cond_result_ok ); + bSuccessful = ( m_aPassage.wait( pTimeOut ) == ::osl::Condition::result_ok ); } return bSuccessful; |