[dia] [warningectomy] implicit conversion from enumeration type



commit 36104262d2d3cffb1ac61ed3ce6585ec306904c1
Author: Hans Breuer <hans breuer org>
Date:   Mon May 20 16:29:43 2013 +0200

    [warningectomy] implicit conversion from enumeration type
    
    implicit conversion from enumeration type 'enum _cairo_font_slant' to
    different enumeration type 'cairo_font_weight_t' (aka 'enum
    _cairo_font_weight') [-Wenum-conversion]
                              DIA_FONT_STYLE_GET_WEIGHT (style) <
    DIA_FONT_MEDIUM ? CAIRO_FONT_SLANT_NORMAL : CAIRO_FONT_WEIGHT_BOLD);
    
    ^~~~~~~~~~~~~~~~~~~~~~~

 objects/standard/outline.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/objects/standard/outline.c b/objects/standard/outline.c
index b5a1112..2ea597e 100644
--- a/objects/standard/outline.c
+++ b/objects/standard/outline.c
@@ -289,7 +289,7 @@ outline_update_data (Outline *outline)
   /* not exact matching but almost the best we can do with the toy api */
   cairo_select_font_face (cr, dia_font_get_family (outline->font), 
                           DIA_FONT_STYLE_GET_SLANT (style) == DIA_FONT_NORMAL ? CAIRO_FONT_SLANT_NORMAL : 
CAIRO_FONT_SLANT_ITALIC,
-                          DIA_FONT_STYLE_GET_WEIGHT (style) < DIA_FONT_MEDIUM ? CAIRO_FONT_SLANT_NORMAL : 
CAIRO_FONT_WEIGHT_BOLD);
+                          DIA_FONT_STYLE_GET_WEIGHT (style) < DIA_FONT_MEDIUM ? CAIRO_FONT_WEIGHT_NORMAL : 
CAIRO_FONT_WEIGHT_BOLD);
   cairo_set_font_size (cr, outline->font_height);
   cairo_text_extents (cr, outline->name, &extents);
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]