From: James Benton Date: Wed, 22 Aug 2012 14:26:03 +0000 (+0100) Subject: Change microseconds to use the greek mu symbol. X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=418a32e9905d0253571bfc33f2859c8fef34039d;p=apitrace Change microseconds to use the greek mu symbol. --- diff --git a/gui/profiledialog.cpp b/gui/profiledialog.cpp index 67db009..146e26a 100644 --- a/gui/profiledialog.cpp +++ b/gui/profiledialog.cpp @@ -117,7 +117,7 @@ QString getTimeString(int64_t time, int64_t unitTime) unit = " ms"; unitScale = 1e6; } else if (unitTime >= 1e3) { - unit = " us"; + unit = QString::fromUtf8(" µs"); unitScale = 1e3; }