Commit 07059691 authored by Victor Ananjevsky's avatar Victor Ananjevsky

remove warnings about incomplete switch cases

parent 2b28e141
...@@ -714,6 +714,7 @@ pango_to_css (gchar *font) ...@@ -714,6 +714,7 @@ pango_to_css (gchar *font)
case PANGO_STYLE_ITALIC: case PANGO_STYLE_ITALIC:
g_string_append (str, "italic "); g_string_append (str, "italic ");
break; break;
default: ;
} }
} }
if (mask & PANGO_FONT_MASK_VARIANT) if (mask & PANGO_FONT_MASK_VARIANT)
...@@ -759,6 +760,7 @@ pango_to_css (gchar *font) ...@@ -759,6 +760,7 @@ pango_to_css (gchar *font)
case PANGO_WEIGHT_ULTRAHEAVY: case PANGO_WEIGHT_ULTRAHEAVY:
g_string_append (str, "Ultraheavy "); g_string_append (str, "Ultraheavy ");
break; break;
default: ;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment