From 418a32e9905d0253571bfc33f2859c8fef34039d Mon Sep 17 00:00:00 2001 From: James Benton Date: Wed, 22 Aug 2012 15:26:03 +0100 Subject: [PATCH] Change microseconds to use the greek mu symbol. --- gui/profiledialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.43.0