Merge with develop
--HG-- branch : compatibility-develop
This commit is contained in:
commit
19dbdf4fad
2 changed files with 4 additions and 4 deletions
|
@ -260,7 +260,7 @@ void CLog::displayString (const char *str)
|
|||
TempArgs.FileName = _FileName;
|
||||
TempArgs.Line = _Line;
|
||||
TempArgs.FuncName = _FuncName;
|
||||
TempArgs.CallstackAndLog = "";
|
||||
TempArgs.CallstackAndLog.clear();
|
||||
|
||||
TempString = str;
|
||||
}
|
||||
|
@ -281,7 +281,7 @@ void CLog::displayString (const char *str)
|
|||
localargs.FileName = _FileName;
|
||||
localargs.Line = _Line;
|
||||
localargs.FuncName = _FuncName;
|
||||
localargs.CallstackAndLog = "";
|
||||
localargs.CallstackAndLog.clear();
|
||||
|
||||
disp = str;
|
||||
args = &localargs;
|
||||
|
@ -314,7 +314,7 @@ void CLog::displayString (const char *str)
|
|||
(*idi)->display( *args, disp );
|
||||
}
|
||||
}
|
||||
TempString = "";
|
||||
TempString.clear();
|
||||
unsetPosition();
|
||||
}
|
||||
|
||||
|
|
|
@ -555,7 +555,7 @@ string CSheetId::toString(bool ifNotFoundUseNumericId) const
|
|||
}
|
||||
else
|
||||
{
|
||||
return NLMISC::toString( "<Sheet %d not found in sheet_id.bin>", _Id.Id );
|
||||
return NLMISC::toString( "<Sheet %u not found in sheet_id.bin>", _Id.Id );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue