From: "Lubomir I. Ivanov" <[email protected]> get_dive_duration_string() should be used in a similiar way to socialnetworks.cpp so that the Dive::put_duration() method sets the variable in the h:min format.
Signed-off-by: Lubomir I. Ivanov <[email protected]> --- qthelper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qthelper.cpp b/qthelper.cpp index 4ccc16d..a4dc090 100644 --- a/qthelper.cpp +++ b/qthelper.cpp @@ -191,7 +191,7 @@ void Dive::put_depth() void Dive::put_duration() { - m_duration = QString::number(((dive->duration.seconds) / 60)) + QString::fromUtf8(" min"); + m_duration = get_dive_duration_string(dive->duration.seconds, QObject::tr("h:"), QObject::tr("min")); } void Dive::put_buddy() -- 1.7.11.msysgit.0 _______________________________________________ subsurface mailing list [email protected] http://lists.subsurface-divelog.org/cgi-bin/mailman/listinfo/subsurface
