Browse Source

Fix the build for Qt5

Merging #3883 broke the Qt5 build, define the color in the standard
way.
0.10
Wladimir J. van der Laan 10 years ago
parent
commit
77888d68d5
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 2
      src/qt/guiconstants.h

2
src/qt/guiconstants.h

@ -24,7 +24,7 @@ static const int STATUSBAR_ICONSIZE = 16; @@ -24,7 +24,7 @@ static const int STATUSBAR_ICONSIZE = 16;
/* Transaction list -- bare address (without label) */
#define COLOR_BAREADDRESS QColor(140, 140, 140)
/* Transaction list -- has conflicting transactions */
#define COLOR_HASCONFLICTING Qt::white;
#define COLOR_HASCONFLICTING QColor(255, 255, 255)
/* Transaction list -- has conflicting transactions - background */
#define COLOR_HASCONFLICTING_BG QColor(192, 0, 0)

Loading…
Cancel
Save