mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 19:51:58 +01:00
added support for dynamic code loading
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user