diff options
Diffstat (limited to 'karbon/core/vcomposite.cc')
-rw-r--r-- | karbon/core/vcomposite.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/karbon/core/vcomposite.cc b/karbon/core/vcomposite.cc index d8eaf027..7872df5f 100644 --- a/karbon/core/vcomposite.cc +++ b/karbon/core/vcomposite.cc @@ -264,7 +264,7 @@ bool VPath::pointIsInside( const KoPoint& p ) const { // Check if point is inside boundingbox. - if( !boundingBox().tqcontains( p ) ) + if( !boundingBox().contains( p ) ) return false; @@ -422,7 +422,7 @@ VPath::transformByViewbox( const TQDomElement &element, TQString viewbox ) if( ! viewbox.isEmpty() ) { // allow for viewbox def with ',' or whitespace - TQStringList points = TQStringList::split( ' ', viewbox.tqreplace( ',', ' ' ).simplifyWhiteSpace() ); + TQStringList points = TQStringList::split( ' ', viewbox.replace( ',', ' ' ).simplifyWhiteSpace() ); double w = KoUnit::parseValue( element.attributeNS( KoXmlNS::svg, "width", TQString() ) ); double h = KoUnit::parseValue( element.attributeNS( KoXmlNS::svg, "height", TQString() ) ); |