- ISO8601 periods contain uppercase characters.
This commit is contained in:
Paul Beckingham 2014-06-10 23:09:41 -04:00
parent bd53dd2aeb
commit 9a74fbe4a9

View file

@ -1574,9 +1574,9 @@ Variant::operator std::string () const
if (hours || minutes || seconds) if (hours || minutes || seconds)
{ {
s << 'T'; s << 'T';
if (hours) s << hours << 'h'; if (hours) s << hours << 'H';
if (minutes) s << minutes << 'm'; if (minutes) s << minutes << 'M';
if (seconds) s << seconds << 's'; if (seconds) s << seconds << 'S';
} }
return s.str (); return s.str ();