diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2007-07-10 14:16:16 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2007-07-10 14:16:16 +0000 |
commit | 143184466bd79ead8cb16dff0977881a8f8c71a3 (patch) | |
tree | 49c30bd13cbbee2cfa4dc798b14c71dcf30a390e | |
parent | 5377130930fbe5c24ee3810b0665c5e02482f730 (diff) |
INTEGRATION: CWS fwk66 (1.68.42); FILE MERGED
2007/06/18 10:23:50 pb 1.68.42.2: RESYNC: (1.68-1.69); FILE MERGED
2007/06/18 06:32:53 cd 1.68.42.1: #i77441# Several minor fixes for switches and assignments
-rw-r--r-- | svtools/source/contnr/fileview.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/contnr/fileview.cxx b/svtools/source/contnr/fileview.cxx index c04c7c52973f..952617ccb6e8 100644 --- a/svtools/source/contnr/fileview.cxx +++ b/svtools/source/contnr/fileview.cxx @@ -4,9 +4,9 @@ * * $RCSfile: fileview.cxx,v $ * - * $Revision: 1.70 $ + * $Revision: 1.71 $ * - * last change: $Author: hr $ $Date: 2007-06-27 21:19:11 $ + * last change: $Author: ihi $ $Date: 2007-07-10 15:16:16 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -1933,7 +1933,7 @@ FileViewResult SvtFileView_Impl::GetFolderContent_Impl( const FolderDescriptor& sal_Int32 nMinTimeout = pAsyncDescriptor->nMinTimeout; OSL_ENSURE( nMinTimeout > 0, "SvtFileView_Impl::GetFolderContent_Impl: invalid minimum timeout!" ); if ( nMinTimeout <= 0 ) - nMinTimeout = 1000L; + nMinTimeout = sal_Int32( 1000L ); pTimeout->Seconds = nMinTimeout / 1000L; pTimeout->Nanosec = ( nMinTimeout % 1000L ) * 1000000L; |