Changed: Minor changes
This commit is contained in:
parent
05d06ae702
commit
4345f54db7
1 changed files with 4 additions and 7 deletions
|
@ -155,7 +155,6 @@ void CCDBSynchronised::read( const string &fileName )
|
|||
}
|
||||
|
||||
f.close();
|
||||
|
||||
} // read //
|
||||
|
||||
|
||||
|
@ -168,7 +167,7 @@ void CCDBSynchronised::write( const string &fileName )
|
|||
{
|
||||
bool res = false;
|
||||
|
||||
if( _Database != 0 )
|
||||
if (_Database != 0)
|
||||
{
|
||||
FILE * f = nlfopen(fileName, "w");
|
||||
if (f)
|
||||
|
@ -292,11 +291,9 @@ string CCDBSynchronised::getString( uint32 id )
|
|||
{
|
||||
return (*itStr).second;
|
||||
}
|
||||
else
|
||||
{
|
||||
nlwarning("<CCDBSynchronised::getString> string with id %d was not found",id);
|
||||
return "";
|
||||
}
|
||||
|
||||
nlwarning("<CCDBSynchronised::getString> string with id %d was not found",id);
|
||||
return "";
|
||||
} // getString //
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue