Index: /trunk/FACT++/src/Converter.h
===================================================================
--- /trunk/FACT++/src/Converter.h	(revision 10711)
+++ /trunk/FACT++/src/Converter.h	(revision 10712)
@@ -144,5 +144,5 @@
 
 // ***************************************************************************
-/** @fn GetHex(const void *dat, size_t size, size_t col, bool prefix)
+/** @template GetHex(const void *dat, size_t size, size_t col, bool prefix)
 
 Converts from a binary block into a hex representation.
Index: /trunk/FACT++/src/Dim.h
===================================================================
--- /trunk/FACT++/src/Dim.h	(revision 10711)
+++ /trunk/FACT++/src/Dim.h	(revision 10712)
@@ -44,5 +44,5 @@
     //!     set to &t
     //!
-    //! @template T
+    //! @tparam T
     //!     type of the data to be sent. The size of the data to be sent
     //!     is determined as sizeof(T)
Index: /trunk/FACT++/src/FACT.cc
===================================================================
--- /trunk/FACT++/src/FACT.cc	(revision 10711)
+++ /trunk/FACT++/src/FACT.cc	(revision 10712)
@@ -21,4 +21,5 @@
 //! of the following formats:
 //!
+//! \verbatim
 //!  - <version>
 //!  - <program> <version>
@@ -26,4 +27,5 @@
 //!  - <program> ({GNU,Free} <package>) <version>
 //!  - <program> - {GNU,Free} <package> <version>
+//! \endverbatim
 //!
 //!  and separated from any copyright/author details by a blank line.
@@ -31,8 +33,9 @@
 //! Handle multi-line bug reporting sections of the form:
 //!
+//! \verbatim
 //!  - Report <program> bugs to <addr>
 //!  - GNU <package> home page: <url>
 //!  - ...
-//!
+//! \endverbatim
 //!
 //! @param name
Index: /trunk/FACT++/src/MessageImp.h
===================================================================
--- /trunk/FACT++/src/MessageImp.h	(revision 10711)
+++ /trunk/FACT++/src/MessageImp.h	(revision 10712)
@@ -32,7 +32,7 @@
     virtual int Write(const Time &time, const std::string &txt, int qos=kInfo);
 
-    int Update(const std::string &str, int qos=kInfo);
-    int Update(const char *txt, int qos=kInfo) { return Update(std::string(txt), qos); }
-    int Update(const std::stringstream &str, int qos=kInfo) { return Update(str.str(), qos); }
+    int Update(const std::string &txt, int severity=kInfo);
+    int Update(const char *txt, int severity=kInfo) { return Update(std::string(txt), severity); }
+    int Update(const std::stringstream &str, int severity=kInfo) { return Update(str.str(), severity); }
 //    int Update(int qos, const char *fmt, ...);
 
Index: /trunk/FACT++/src/StateMachineImp.h
===================================================================
--- /trunk/FACT++/src/StateMachineImp.h	(revision 10711)
+++ /trunk/FACT++/src/StateMachineImp.h	(revision 10712)
@@ -122,5 +122,5 @@
 
     void PrintListOfEvents(std::ostream &out, const std::string &evt="") const;
-    void PrintListOfEvents(const std::string &evt="") const;
+    void PrintListOfEvents(const std::string &str="") const;
 
     void PrintListOfStates(std::ostream &out) const;
