]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxtime.h
Remove old workaround that is not needed anymore
[lyx.git] / src / support / lyxtime.h
index 74586cf7de947264ed07a2beb7cc57486c6bfe5a..05cbc508411be0e8cec72cf05ff75b29bb874c78 100644 (file)
 #include <time.h>
 #include <string>
 
+#include "support/strfwd.h"
+
 
 namespace lyx {
 namespace support {
 
 time_t current_time();
 
-/** Returns a locale-dependent formatting of the date
- *  and time encoded in \c time. The \p fmt string
- *  holds the formatting arguments of \c strftime.
+/** Returns a locale-dependent formatting of the date and time encoded in \c t
+ *  The \p fmt string holds the formatting arguments of QDateTime::toString().
+ *  If fmt is empty then the formatting of the date and time is itself according
+ *  to the locale.
  */
-std::string const formatted_time(time_t t, std::string const & fmt);
+docstring formatted_datetime(time_t t, std::string const & fmt = "");
 
 /**
  * Inverse of asctime(gmtime()).