added support for dynamic code loading

This commit is contained in:
Peter Schojer
2008-09-15 06:42:10 +00:00
parent 69608ecbe3
commit a981fb3130
17 changed files with 573 additions and 15 deletions

View File

@@ -80,10 +80,10 @@ void TimeFieldCell::setFormat(TimeField::Format fmt)
bool TimeFieldCell::serializeJSON(std::ostream& out, const std::string& name)
{
out << name;
out << name << ":";
if (this->hasValue())
{
out << ":'" << getFormatter()->format(getValue()) << "'";
out << "'" << getFormatter()->format(getValue()) << "'";
}
return true;
}