aboutsummaryrefslogtreecommitdiff
path: root/src/qt/guiconstants.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-06-30 15:43:01 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2014-06-30 15:44:55 +0200
commit77888d68d5b78d442a18073c663478bae35da246 (patch)
tree4a0d35c270946604dff1fe646d5356187ff3581e /src/qt/guiconstants.h
parent8ceb28afc3799c765d1fce242d9c9472d5f4024c (diff)
downloadbitcoin-77888d68d5b78d442a18073c663478bae35da246.tar.xz
Fix the build for Qt5
Merging #3883 broke the Qt5 build, define the color in the standard way.
Diffstat (limited to 'src/qt/guiconstants.h')
-rw-r--r--src/qt/guiconstants.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/guiconstants.h b/src/qt/guiconstants.h
index 44e361e1e5..696761e234 100644
--- a/src/qt/guiconstants.h
+++ b/src/qt/guiconstants.h
@@ -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)