Unverified Commit e4731dd8 authored by Wladimir J. van der Laan's avatar Wladimir J. van der Laan
Browse files

qt: Use quint64 for formatServicesStr

`uint64_t` was causing a build error on some systems, as that type is
not known after including just the Qt headers.
parent 04d6c7d1
Showing with 2 additions and 2 deletions
+2 -2
......@@ -810,7 +810,7 @@ QString formatDurationStr(int secs)
return strList.join(" ");
}
QString formatServicesStr(uint64_t mask)
QString formatServicesStr(quint64 mask)
{
QStringList strList;
......
......@@ -180,7 +180,7 @@ namespace GUIUtil
QString formatDurationStr(int secs);
/* Format CNodeStats.nServices bitmask into a user-readable string */
QString formatServicesStr(uint64_t mask);
QString formatServicesStr(quint64 mask);
/* Format a CNodeCombinedStats.dPingTime into a user-readable string or display N/A, if 0*/
QString formatPingTime(double dPingTime);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment