diff --git a/ChangeLog.txt b/ChangeLog.txt index 0b59b697d5..d338e901a5 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -10,6 +10,11 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2013-03-18 17:22 UTC+0100 Viktor Szakats (harbour syenar.net) + * contrib/hbcairo/pattern.c + ! fixed cairo_pattern_get_radial_points() to cairo_pattern_get_radial_circles() + after pull request #2 + 2013-03-18 17:13 UTC+0100 Viktor Szakats (harbour syenar.net) * contrib/hbcairo/context.c * contrib/hbcairo/core.c diff --git a/contrib/hbcairo/pattern.c b/contrib/hbcairo/pattern.c index 274cdc43e2..fa103c64ae 100644 --- a/contrib/hbcairo/pattern.c +++ b/contrib/hbcairo/pattern.c @@ -312,7 +312,7 @@ HB_FUNC( CAIRO_PATTERN_GET_RADIAL_CIRCLES ) double dY1; double dR1; - hb_retni( cairo_pattern_get_radial_points( pPattern, &dX0, &dY0, &dR0, &dX1, &dY1, &dR1 ) ); + hb_retni( cairo_pattern_get_radial_circles( pPattern, &dX0, &dY0, &dR0, &dX1, &dY1, &dR1 ) ); hb_stornd( dX0, 2 ); hb_stornd( dY0, 3 );