diff options
author | Kurt Zenker <kz@openoffice.org> | 2009-12-07 17:37:18 +0100 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2009-12-07 17:37:18 +0100 |
commit | f8ada8f2a93659e27928f3b5244c813de2c3847b (patch) | |
tree | 8b8df5b0455a7f869e0dc8a7ef792e3ed74f233d /transex3 | |
parent | 2f883652c1af80075dc68b5cb439a13cd1dc4129 (diff) |
masterfix: #i10000# type fixed
Notes
Notes:
split repo tag: libs-gui_ooo/DEV300_m67
Diffstat (limited to 'transex3')
-rw-r--r-- | transex3/source/treeconfig.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/transex3/source/treeconfig.cxx b/transex3/source/treeconfig.cxx index d9e3b829982b..137492c39a50 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 |