mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-10-09 19:13:28 +02:00
refactor: Remove unused defines in bitcoinunits.h
This commit is contained in:
@@ -13,22 +13,6 @@
|
|||||||
// U+2009 THIN SPACE = UTF-8 E2 80 89
|
// U+2009 THIN SPACE = UTF-8 E2 80 89
|
||||||
#define REAL_THIN_SP_CP 0x2009
|
#define REAL_THIN_SP_CP 0x2009
|
||||||
#define REAL_THIN_SP_UTF8 "\xE2\x80\x89"
|
#define REAL_THIN_SP_UTF8 "\xE2\x80\x89"
|
||||||
#define REAL_THIN_SP_HTML " "
|
|
||||||
|
|
||||||
// U+200A HAIR SPACE = UTF-8 E2 80 8A
|
|
||||||
#define HAIR_SP_CP 0x200A
|
|
||||||
#define HAIR_SP_UTF8 "\xE2\x80\x8A"
|
|
||||||
#define HAIR_SP_HTML " "
|
|
||||||
|
|
||||||
// U+2006 SIX-PER-EM SPACE = UTF-8 E2 80 86
|
|
||||||
#define SIXPEREM_SP_CP 0x2006
|
|
||||||
#define SIXPEREM_SP_UTF8 "\xE2\x80\x86"
|
|
||||||
#define SIXPEREM_SP_HTML " "
|
|
||||||
|
|
||||||
// U+2007 FIGURE SPACE = UTF-8 E2 80 87
|
|
||||||
#define FIGURE_SP_CP 0x2007
|
|
||||||
#define FIGURE_SP_UTF8 "\xE2\x80\x87"
|
|
||||||
#define FIGURE_SP_HTML " "
|
|
||||||
|
|
||||||
// QMessageBox seems to have a bug whereby it doesn't display thin/hair spaces
|
// QMessageBox seems to have a bug whereby it doesn't display thin/hair spaces
|
||||||
// correctly. Workaround is to display a space in a small font. If you
|
// correctly. Workaround is to display a space in a small font. If you
|
||||||
@@ -114,9 +98,6 @@ public:
|
|||||||
{
|
{
|
||||||
text.remove(' ');
|
text.remove(' ');
|
||||||
text.remove(QChar(THIN_SP_CP));
|
text.remove(QChar(THIN_SP_CP));
|
||||||
#if (THIN_SP_CP != REAL_THIN_SP_CP)
|
|
||||||
text.remove(QChar(REAL_THIN_SP_CP));
|
|
||||||
#endif
|
|
||||||
return text;
|
return text;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user