summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2005-01-11 11:47:43 +0000
committerRüdiger Timm <rt@openoffice.org>2005-01-11 11:47:43 +0000
commit31e693421aa08e771a29c7b0f92594be57f55079 (patch)
treeeb5b2018682511e0a8119f887f15ffda20995166 /configmgr
parent322a2a889dc245b38522c2cc8df21c63029394b3 (diff)
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
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/localbe/localstratumbase.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/configmgr/source/localbe/localstratumbase.cxx b/configmgr/source/localbe/localstratumbase.cxx
index 918bd7c20d94..8927c24d3417 100644
--- a/configmgr/source/localbe/localstratumbase.cxx
+++ b/configmgr/source/localbe/localstratumbase.cxx
@@ -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);
}
//------------------------------------------------------------------------------