Fixed a pushed down row in Javascript tabelar output functions.

git-svn-id: http://yate.null.ro/svn/yate/trunk@5908 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2014-08-22 10:43:37 +00:00
parent 011cafdb6c
commit dddac05512
1 changed files with 1 additions and 1 deletions

View File

@ -792,7 +792,7 @@ static void dumpTable(const ExpOperation& oper, String& str, const char* eol)
{
while (++m_rows < row)
append(0,false);
append(new String(val),false);
append(new String(val),(row <= 1));
}
inline const String* getString(unsigned int row) const
{ return (row < m_rows) ? static_cast<const String*>(at(row)) : 0; }