summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2008-02-06 16:26:48 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2008-02-06 16:26:48 +0000
commit7a7c1dcb9bfb49b38b7ea6bb276c5189262773c0 (patch)
treee34441929fb954602565bb9035f4426d03ddfdeb
parent0599c63e078a4e7e99f50f0a038415d75b8cc493 (diff)
#i10000# master fix , build fix
-rw-r--r--xmlhelp/source/com/sun/star/help/HelpCompiler.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/xmlhelp/source/com/sun/star/help/HelpCompiler.cxx b/xmlhelp/source/com/sun/star/help/HelpCompiler.cxx
index 9a140a9bc3e5..b780c336cf7d 100644
--- a/xmlhelp/source/com/sun/star/help/HelpCompiler.cxx
+++ b/xmlhelp/source/com/sun/star/help/HelpCompiler.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: HelpCompiler.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: ihi $ $Date: 2008-02-05 12:54:56 $
+ * last change: $Author: ihi $ $Date: 2008-02-06 17:26:48 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -66,7 +66,7 @@ xmlDocPtr HelpCompiler::getSourceDocument(const fs::path &filePath)
#ifdef UNX
sleep( 3 );
#else
- _sleep( 3 );
+ Sleep( 3 );
#endif
res = xmlParseFile(filePath.native_file_string().c_str());
}
@@ -95,7 +95,7 @@ xmlDocPtr HelpCompiler::getSourceDocument(const fs::path &filePath)
#ifdef UNX
sleep( 3 );
#else
- _sleep( 3 );
+ Sleep( 3 );
#endif
doc = xmlParseFile(filePath.native_file_string().c_str());
}
@@ -420,7 +420,7 @@ bool HelpCompiler::compile( void ) throw( HelpProcessingException )
#ifdef UNX
sleep( 3 );
#else
- _sleep( 3 );
+ Sleep( 3 );
#endif
docResolvedOrg = getSourceDocument(inputFile);
if( !docResolvedOrg )