diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-10 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-4 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-6 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-8 | 5 | ||||
-rw-r--r-- | pango/pango-attributes.h | 4 |
6 files changed, 27 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2004-03-01 Murray Cumming <murrayc@murrayc.com> + + * pango/pango-attributes.h: Removed trailing commas from the + enums - which causes warnings that break warnings-as-errors builds. + Mon Mar 1 09:43:38 2004 Owen Taylor <otaylor@redhat.com> * pango/pangofc-fontmap.c (pango_fc_font_map_finalize): diff --git a/ChangeLog.pre-1-10 b/ChangeLog.pre-1-10 index 5fc049cd..c2e1d4e7 100644 --- a/ChangeLog.pre-1-10 +++ b/ChangeLog.pre-1-10 @@ -1,3 +1,8 @@ +2004-03-01 Murray Cumming <murrayc@murrayc.com> + + * pango/pango-attributes.h: Removed trailing commas from the + enums - which causes warnings that break warnings-as-errors builds. + Mon Mar 1 09:43:38 2004 Owen Taylor <otaylor@redhat.com> * pango/pangofc-fontmap.c (pango_fc_font_map_finalize): diff --git a/ChangeLog.pre-1-4 b/ChangeLog.pre-1-4 index 5fc049cd..c2e1d4e7 100644 --- a/ChangeLog.pre-1-4 +++ b/ChangeLog.pre-1-4 @@ -1,3 +1,8 @@ +2004-03-01 Murray Cumming <murrayc@murrayc.com> + + * pango/pango-attributes.h: Removed trailing commas from the + enums - which causes warnings that break warnings-as-errors builds. + Mon Mar 1 09:43:38 2004 Owen Taylor <otaylor@redhat.com> * pango/pangofc-fontmap.c (pango_fc_font_map_finalize): diff --git a/ChangeLog.pre-1-6 b/ChangeLog.pre-1-6 index 5fc049cd..c2e1d4e7 100644 --- a/ChangeLog.pre-1-6 +++ b/ChangeLog.pre-1-6 @@ -1,3 +1,8 @@ +2004-03-01 Murray Cumming <murrayc@murrayc.com> + + * pango/pango-attributes.h: Removed trailing commas from the + enums - which causes warnings that break warnings-as-errors builds. + Mon Mar 1 09:43:38 2004 Owen Taylor <otaylor@redhat.com> * pango/pangofc-fontmap.c (pango_fc_font_map_finalize): diff --git a/ChangeLog.pre-1-8 b/ChangeLog.pre-1-8 index 5fc049cd..c2e1d4e7 100644 --- a/ChangeLog.pre-1-8 +++ b/ChangeLog.pre-1-8 @@ -1,3 +1,8 @@ +2004-03-01 Murray Cumming <murrayc@murrayc.com> + + * pango/pango-attributes.h: Removed trailing commas from the + enums - which causes warnings that break warnings-as-errors builds. + Mon Mar 1 09:43:38 2004 Owen Taylor <otaylor@redhat.com> * pango/pangofc-fontmap.c (pango_fc_font_map_finalize): diff --git a/pango/pango-attributes.h b/pango/pango-attributes.h index 48241860..b3dd3fa3 100644 --- a/pango/pango-attributes.h +++ b/pango/pango-attributes.h @@ -81,7 +81,7 @@ typedef enum PANGO_ATTR_RISE, /* PangoAttrInt */ PANGO_ATTR_SHAPE, /* PangoAttrShape */ PANGO_ATTR_SCALE, /* PangoAttrFloat */ - PANGO_ATTR_FALLBACK, /* PangoAttrInt */ + PANGO_ATTR_FALLBACK /* PangoAttrInt */ } PangoAttrType; typedef enum { @@ -89,7 +89,7 @@ typedef enum { PANGO_UNDERLINE_SINGLE, PANGO_UNDERLINE_DOUBLE, PANGO_UNDERLINE_LOW, - PANGO_UNDERLINE_ERROR, + PANGO_UNDERLINE_ERROR } PangoUnderline; struct _PangoAttribute |