diff options
author | Jon Atack <jon@atack.com> | 2020-12-25 17:10:02 +0100 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2020-12-27 14:29:26 +0100 |
commit | e0e55060bf697fe8b9ed43ff62383a0451e9c0ce (patch) | |
tree | c155e20daa9af7011e3cf4633a843f06741f7595 | |
parent | 0d5613f9ded846aa20a95c757672e9560c664c4c (diff) |
gui: fix broken doxygen formatting in src/qt/guiutil.h
-rw-r--r-- | src/qt/guiutil.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h index d7794b071a..4bef13efb5 100644 --- a/src/qt/guiutil.h +++ b/src/qt/guiutil.h @@ -219,25 +219,25 @@ namespace GUIUtil bool GetStartOnSystemStartup(); bool SetStartOnSystemStartup(bool fAutoStart); - /* Convert QString to OS specific boost path through UTF-8 */ + /** Convert QString to OS specific boost path through UTF-8 */ fs::path qstringToBoostPath(const QString &path); - /* Convert OS specific boost path to QString through UTF-8 */ + /** Convert OS specific boost path to QString through UTF-8 */ QString boostPathToQString(const fs::path &path); /** Convert enum Network to QString */ QString NetworkToQString(Network net); - /* Convert seconds into a QString with days, hours, mins, secs */ + /** Convert seconds into a QString with days, hours, mins, secs */ QString formatDurationStr(int secs); - /* Format CNodeStats.nServices bitmask into a user-readable string */ + /** Format CNodeStats.nServices bitmask into a user-readable string */ QString formatServicesStr(quint64 mask); - /* Format a CNodeStats.m_ping_usec into a user-readable string or display N/A, if 0*/ + /** Format a CNodeStats.m_ping_usec into a user-readable string or display N/A, if 0 */ QString formatPingTime(int64_t ping_usec); - /* Format a CNodeCombinedStats.nTimeOffset into a user-readable string. */ + /** Format a CNodeCombinedStats.nTimeOffset into a user-readable string */ QString formatTimeOffset(int64_t nTimeOffset); QString formatNiceTimeOffset(qint64 secs); |