File tree Expand file tree Collapse file tree 1 file changed +0
-19
lines changed Expand file tree Collapse file tree 1 file changed +0
-19
lines changed Original file line number Diff line number Diff line change 13
13
// U+2009 THIN SPACE = UTF-8 E2 80 89
14
14
#define REAL_THIN_SP_CP 0x2009
15
15
#define REAL_THIN_SP_UTF8 " \xE2\x80\x89 "
16
- #define REAL_THIN_SP_HTML "  "
17
-
18
- // U+200A HAIR SPACE = UTF-8 E2 80 8A
19
- #define HAIR_SP_CP 0x200A
20
- #define HAIR_SP_UTF8 " \xE2\x80\x8A "
21
- #define HAIR_SP_HTML "  "
22
-
23
- // U+2006 SIX-PER-EM SPACE = UTF-8 E2 80 86
24
- #define SIXPEREM_SP_CP 0x2006
25
- #define SIXPEREM_SP_UTF8 " \xE2\x80\x86 "
26
- #define SIXPEREM_SP_HTML "  "
27
-
28
- // U+2007 FIGURE SPACE = UTF-8 E2 80 87
29
- #define FIGURE_SP_CP 0x2007
30
- #define FIGURE_SP_UTF8 " \xE2\x80\x87 "
31
- #define FIGURE_SP_HTML "  "
32
16
33
17
// QMessageBox seems to have a bug whereby it doesn't display thin/hair spaces
34
18
// correctly. Workaround is to display a space in a small font. If you
@@ -114,9 +98,6 @@ class BitcoinUnits: public QAbstractListModel
114
98
{
115
99
text.remove (' ' );
116
100
text.remove (QChar (THIN_SP_CP));
117
- #if (THIN_SP_CP != REAL_THIN_SP_CP)
118
- text.remove (QChar (REAL_THIN_SP_CP));
119
- #endif
120
101
return text;
121
102
}
122
103
You can’t perform that action at this time.
0 commit comments