cppcheck: prefer prefix variant
This commit is contained in:
parent
80df348d1c
commit
ebfd82ca51
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ getFirstExisting( OUString const& aDir, std::list<OUString> const& aSubDirs,
|
|||
static OUString const aSlash(RTL_CONSTASCII_USTRINGPARAM("/"));
|
||||
String aResult;
|
||||
for ( std::list<OUString>::const_iterator i = aSubDirs.begin();
|
||||
i != aSubDirs.end(); i++ )
|
||||
i != aSubDirs.end(); ++i )
|
||||
{
|
||||
String aFile = aDir + aSlash + *i + aSlash + aXMLName;
|
||||
OSL_TRACE( "testing: %s", OUSTRING_CSTR( aFile ) );
|
||||
|
|
Loading…
Reference in a new issue