INTEGRATION: CWS jb01 (1.2.2); FILE MERGED

2005/01/10 15:01:01 jb 1.2.2.1: #i40244# Correct timestamp check to always (rather than never) load layer files without timestamp support
This commit is contained in:
Rüdiger Timm 2005-01-11 11:47:43 +00:00
parent 322a2a889d
commit 31e693421a

View file

@ -2,9 +2,9 @@
*
* $RCSfile: localstratumbase.cxx,v $
*
* $Revision: 1.2 $
* $Revision: 1.3 $
*
* last change: $Author: rt $ $Date: 2005-01-07 10:10:01 $
* last change: $Author: rt $ $Date: 2005-01-11 12:47:43 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -180,7 +180,7 @@ sal_Bool LocalStratumBase::isMoreRecent(const rtl::OUString& aFileUrl,
getLayerDirectories(layerUrl, subLayerUrl) ;
return layerUrl.getLength() != 0 &&
return layerUrl.getLength() == 0 ||
!BasicLocalFileLayer::getTimestamp(layerUrl + aFileUrl).equals( aTimestamp);
}
//------------------------------------------------------------------------------