Show
Ignore:
Timestamp:
08/01/08 14:47:24 (5 months ago)
Author:
sroret
Message:

merge with webkit revision 35510

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/BAL/WKAL/Concretizations/Graphics/Cairo/BCPathCairo.cpp

    r419 r427  
    181181    cairo_t* cr = platformPath()->m_cr; 
    182182    double x0, x1, y0, y1; 
     183#if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 6, 0) 
    183184    cairo_path_extents(cr, &x0, &y0, &x1, &y1); 
     185#else 
     186    cairo_stroke_extents(cr, &x0, &y0, &x1, &y1); 
     187#endif 
    184188    return FloatRect(x0, y0, x1 - x0, y1 - y0); 
    185189}