From 62b0a5f6eff925c6b3e402b9f485b7f7fac7dbd3 Mon Sep 17 00:00:00 2001 From: Jens-Heiner Rechtien Date: Mon, 14 Aug 2006 16:08:40 +0000 Subject: INTEGRATION: CWS sdfcreater (1.3.40); FILE MERGED 2006/07/26 12:16:05 ihi 1.3.40.5: #i34408# resync fix 2006/07/12 11:22:09 ihi 1.3.40.4: RESYNC: (1.3-1.4); FILE MERGED 2006/04/03 19:36:23 ihi 1.3.40.3: #i61229# remove bootstrap dependency 2006/04/03 18:51:33 ihi 1.3.40.2: #i61229# added skip symlinks feature 2006/03/30 13:15:49 ihi 1.3.40.1: #i61229# Use file find to search for l10n files --- transex3/inc/srciter.hxx | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'transex3') diff --git a/transex3/inc/srciter.hxx b/transex3/inc/srciter.hxx index 045b64cb86c4..be4cbea371ca 100644 --- a/transex3/inc/srciter.hxx +++ b/transex3/inc/srciter.hxx @@ -4,9 +4,9 @@ * * $RCSfile: srciter.hxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: hr $ $Date: 2006-06-19 17:19:37 $ + * last change: $Author: hr $ $Date: 2006-08-14 17:08:40 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -33,25 +33,25 @@ * ************************************************************************/ -#include -#include -#include -#include +#ifndef TRANSEX_DIRECTORY_HXX +#define TRANSEX_DIRECTORY_HXX +#include "directory.hxx" +#endif -// // class SourceTreeIterator // class SourceTreeIterator { private: - SourceDirectory *pRootDirectory; - BOOL bInExecute; + transex::Directory aRootDirectory; + bool bInExecute; - void ExecuteDirectory( SourceDirectory *pDirectory ); + void ExecuteDirectory( transex::Directory& pDirectory ); protected: bool bLocal; + bool bSkipLinks; public: SourceTreeIterator( const ByteString &rRootDirectory, const ByteString &rVersion , bool bLocal_in = false); @@ -60,7 +60,7 @@ public: BOOL StartExecute(); void EndExecute(); - virtual void OnExecuteDirectory( const ByteString &rDirectory ); + virtual void OnExecuteDirectory( const rtl::OUString &rDirectory ); }; -- cgit