diff options
author | Kurt Zenker <kz@openoffice.org> | 2005-11-02 16:41:11 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2005-11-02 16:41:11 +0000 |
commit | adff2466301dadf2e5803275caf442c7c140e88a (patch) | |
tree | 91bf7bdc4b4ae04253e6dc4effc280d5e389b106 /qadevOOo/runner | |
parent | 4c8b41fdc60824618404c828d1a18cb923dbef80 (diff) |
INTEGRATION: CWS qadev24 (1.3.12); FILE MERGED
2005/09/19 22:02:04 cn 1.3.12.2: RESYNC: (1.3-1.4); FILE MERGED
2005/08/12 07:44:07 lla 1.3.12.1: #124348# prepare source for use of leave out lists
Diffstat (limited to 'qadevOOo/runner')
-rw-r--r-- | qadevOOo/runner/convwatch/DocumentConverter.java | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/qadevOOo/runner/convwatch/DocumentConverter.java b/qadevOOo/runner/convwatch/DocumentConverter.java index 4967c30cddbe..37e5fc0edee5 100644 --- a/qadevOOo/runner/convwatch/DocumentConverter.java +++ b/qadevOOo/runner/convwatch/DocumentConverter.java @@ -4,9 +4,9 @@ * * $RCSfile: DocumentConverter.java,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: rt $ $Date: 2005-09-08 17:11:10 $ + * last change: $Author: kz $ $Date: 2005-11-02 17:41:11 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -191,12 +191,18 @@ public class DocumentConverter extends EnhancedComplexTestCase log.println("- next file is: ------------------------------"); log.println(sEntry); - runGDC(sEntry, sNewReferencePath); + if (aGTA.checkIfUsable(sEntry)) + { + runGDC(sEntry, sNewReferencePath); + } } } else { - runGDC(m_sInputPath, m_sReferencePath); + if (aGTA.checkIfUsable(m_sInputPath)) + { + runGDC(m_sInputPath, m_sReferencePath); + } } } |