From: PLR Date: Tue, 17 Nov 2015 03:08:13 +0000 (-0800) Subject: fix conflict with /usr/include/MacTypes.h `Style` type X-Git-Url: https://git.owens.tech/assets/favicon.png/assets/favicon.png/git?a=commitdiff_plain;h=22e246ac401c5f9d1173d46bedcde7faa3cfb34a;p=vimb.git fix conflict with /usr/include/MacTypes.h `Style` type --- 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;