blob: 9c3f98fa61f86ee716589a0f93ab921f49d13efe [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001From 442da9076b52003743ffc6fd7b9d647de6d7aa8f Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Thu, 17 Jan 2019 16:37:54 +0100
4Subject: [PATCH] app.cc: use old school asignment to avoid gcc 4.8 error
5
6This is needed to build vte-native on Centos 7,
7and can be dropped once that OS is no longer supported.
8
9Upstream-Status: Inappropriate [ancient compiler fix]
10Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
11---
12 src/app/app.cc | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/src/app/app.cc b/src/app/app.cc
16index d424064..675d789 100644
17--- a/src/app/app.cc
18+++ b/src/app/app.cc
19@@ -306,7 +306,7 @@ public:
20 else
21 alpha = get_alpha();
22
23- GdkRGBA color{bg_color};
24+ GdkRGBA color = bg_color;
25 color.alpha = alpha;
26 return color;
27 }