Index: /trunk/FACT++/gui/FactGui.h
===================================================================
--- /trunk/FACT++/gui/FactGui.h	(revision 11391)
+++ /trunk/FACT++/gui/FactGui.h	(revision 11392)
@@ -2118,6 +2118,6 @@
 
             out << "<font size='-1' color='navy'>[<B>";
-            out << Time::fmt("%H:%M:%S") << time << "</B>]</FONT>  ";
-            out << text.substr(6);
+            out << time.GetAsStr("%H:%M:%S");
+            out << "</B>]</FONT>  " << text.substr(6);
             fChatText->append(out.str().c_str());
 
@@ -2152,5 +2152,7 @@
         default:       out << "navy";    break;
         }
-        out << "'>" << time.GetAsStr() << " - " << text << "</font>";
+        out << "'>";
+        out << time.GetAsStr("%H:%M:%S.%f").substr(0,12);
+        out << " - " << text << "</font>";
 
         fLogText->append(out.str().c_str());
@@ -2193,5 +2195,7 @@
 
         stringstream out;
-        out << "<font size'-1' color='navy'>[" << Time::fmt("%H:%M:%S.%f") << tm << "]</font>   <B>" << info.getName() << "</B> - ";
+        out << "<font size'-1' color='navy'>[";
+        out << tm.GetAsStr("%H:%M:%S.%f").substr(0,12);
+        out << "]</font>   <B>" << info.getName() << "</B> - ";
 
         bool iserr = true;
