Skip to content

Commit 77888d6

Browse files
committed
Fix the build for Qt5
Merging #3883 broke the Qt5 build, define the color in the standard way.
1 parent 8ceb28a commit 77888d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qt/guiconstants.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ static const int STATUSBAR_ICONSIZE = 16;
2424
/* Transaction list -- bare address (without label) */
2525
#define COLOR_BAREADDRESS QColor(140, 140, 140)
2626
/* Transaction list -- has conflicting transactions */
27-
#define COLOR_HASCONFLICTING Qt::white;
27+
#define COLOR_HASCONFLICTING QColor(255, 255, 255)
2828
/* Transaction list -- has conflicting transactions - background */
2929
#define COLOR_HASCONFLICTING_BG QColor(192, 0, 0)
3030

0 commit comments

Comments
 (0)