diff options
Diffstat (limited to 'ksvg/impl/SVGAnimateElementImpl.cc')
-rw-r--r-- | ksvg/impl/SVGAnimateElementImpl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ksvg/impl/SVGAnimateElementImpl.cc b/ksvg/impl/SVGAnimateElementImpl.cc index ab9bc52c..ccf8565d 100644 --- a/ksvg/impl/SVGAnimateElementImpl.cc +++ b/ksvg/impl/SVGAnimateElementImpl.cc @@ -81,7 +81,7 @@ void SVGAnimateElementImpl::handleTimerEvent() else { m_animVal += m_addStep; - applyAttribute(getAttributeName(), QString::number(m_animVal)); + applyAttribute(getAttributeName(), TQString::number(m_animVal)); } if(m_step < m_steps) @@ -130,7 +130,7 @@ void SVGAnimateElementImpl::handleTimerEvent() if(m_additive == "replace" && needCombine) needCombine = false; - applyAttribute(m_attributeName, QString::number(m_from), needCombine); + applyAttribute(m_attributeName, TQString::number(m_from), needCombine); m_step++; |