From 22e246ac401c5f9d1173d46bedcde7faa3cfb34a Mon Sep 17 00:00:00 2001
From: PLR <plredmond@gmail.com>
Date: Mon, 16 Nov 2015 19:08:13 -0800
Subject: [PATCH] fix conflict with /usr/include/MacTypes.h `Style` type

---
 src/main.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main.h b/src/main.h
index 7e4c035..e9abea3 100644
--- a/src/main.h
+++ b/src/main.h
@@ -367,7 +367,7 @@ typedef struct {
     VbColor              status_bg[VB_STATUS_LAST];
     VbColor              status_fg[VB_STATUS_LAST];
     PangoFontDescription *status_font[VB_STATUS_LAST];
-} Style;
+} VbStyle;
 
 typedef struct {
     Gui             gui;
@@ -376,7 +376,7 @@ typedef struct {
     char            *files[FILES_LAST];
     Mode            *mode;
     Config          config;
-    Style           style;
+    VbStyle           style;
     SoupSession     *session;
 #ifdef HAS_GTK3
     Window          embed;
-- 
2.20.1