Commit e824039b authored by Thiago Macieira's avatar Thiago Macieira Committed by The Qt Project
Browse files

Print the password character using the form U+XXXX


Change-Id: I5d901e6471509cb0f5177724d94912becf258182
Reviewed-by: default avatarFriedemann Kleint <Friedemann.Kleint@digia.com>
Showing with 1 addition and 1 deletion
......@@ -305,7 +305,7 @@ QString qtDiag(unsigned flags)
if (passwordMaskCharacter.unicode() >= 32 && passwordMaskCharacter.unicode() < 128)
str << '\'' << passwordMaskCharacter << '\'';
else
str << hex << showbase << passwordMaskCharacter.unicode() << noshowbase << dec;
str << "U+" << qSetFieldWidth(4) << qSetPadChar('0') << uppercasedigits << hex << passwordMaskCharacter.unicode() << dec << qSetFieldWidth(0);
str << '\n'
<< " fontSmoothingGamma: " << styleHints->fontSmoothingGamma() << '\n'
<< " useRtlExtensions: " << styleHints->useRtlExtensions() << '\n'
......
Supports Markdown
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