summaryrefslogtreecommitdiff
path: root/transex3
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-08-14 16:08:40 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-08-14 16:08:40 +0000
commit62b0a5f6eff925c6b3e402b9f485b7f7fac7dbd3 (patch)
treece09547509c4606e5059dd41cb166c7d54fd7dc3 /transex3
parent2ac8d412ca1cf9ec6b9516c582be1165ab5298f8 (diff)
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
Diffstat (limited to 'transex3')
-rw-r--r--transex3/inc/srciter.hxx22
1 files changed, 11 insertions, 11 deletions
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 <bootstrp/listmacr.hxx>
-#include <bootstrp/sstring.hxx>
-#include <bootstrp/prj.hxx>
-#include <bootstrp/mkcreate.hxx>
+#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 );
};