summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2009-12-07 17:37:18 +0100
committerKurt Zenker <kz@openoffice.org>2009-12-07 17:37:18 +0100
commitf2ccd4f3504bfc6804698925585bb6951b46ac48 (patch)
treed632bae1f4453ffb744595d44190cb4e90251d4a
parent4a9322a8929407822855ca6acaffe8f21c9f7fca (diff)
masterfix: #i10000# type fixedooo/DEV300_m67
-rw-r--r--transex3/source/treeconfig.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/transex3/source/treeconfig.cxx b/transex3/source/treeconfig.cxx
index 2bea4186b2..3f1dec9ded 100644
--- a/transex3/source/treeconfig.cxx
+++ b/transex3/source/treeconfig.cxx
@@ -54,10 +54,10 @@ bool Treeconfig::getActiveRepositories( vector<string>& active_repos ){
string partial;
// if we are inside of a repository root then active it otherwise let the app handle the return!
- unsigned int pos = pwd.find_first_of( source_root );
+ string::size_type pos = pwd.find_first_of( source_root );
if( pos != string::npos && ( pos + source_root.length() +1 ) < pwd.length()){ // I am within SOURCE_ROOT_DIR
partial = pwd.substr( pos + source_root.length() +1 , pwd.length());
- unsigned int nextPart = partial.find_first_of( "/" );
+ string::size_type nextPart = partial.find_first_of( "/" );
if( nextPart != string::npos )
hasPath = true;
else