diff options
author | Murray Cumming <murrayc@murrayc.com> | 2004-03-01 14:56:57 +0000 |
---|---|---|
committer | Murray Cumming <murrayc@src.gnome.org> | 2004-03-01 14:56:57 +0000 |
commit | fa8ac6be9ea65de7f4f0c15ff68c0ff9ddb4b189 (patch) | |
tree | 38462c347ae2f6b6da2091acfa6240711148bb3f /pango/pango-attributes.h | |
parent | a475dab5a46bbdf3f02cca7a84ca1015790d26ab (diff) | |
download | pango-fa8ac6be9ea65de7f4f0c15ff68c0ff9ddb4b189.tar.gz |
Removed trailing commas from the enums - which causes warnings that break
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.
Diffstat (limited to 'pango/pango-attributes.h')
-rw-r--r-- | pango/pango-attributes.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 |