diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
commit | eba47f8f0637f451e21348187591e1f1fd58ac74 (patch) | |
tree | 448f10b95c656604acc331a3236c1e59bde5c1ad /ksvg/impl/SVGHelperImpl.h | |
parent | c7e8736c69373f48b0401319757c742e8607431a (diff) | |
download | tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip |
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksvg/impl/SVGHelperImpl.h')
-rw-r--r-- | ksvg/impl/SVGHelperImpl.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/ksvg/impl/SVGHelperImpl.h b/ksvg/impl/SVGHelperImpl.h index e8bbdb39..86edbf66 100644 --- a/ksvg/impl/SVGHelperImpl.h +++ b/ksvg/impl/SVGHelperImpl.h @@ -30,8 +30,8 @@ #include "ksvg_lookup.h" -class QRect; -class QString; +class TQRect; +class TQString; namespace KSVG { @@ -47,7 +47,7 @@ public: // Dynamic attribute updating template<class T> - static void applyContainer(T *obj, int token, const QString &value) + static void applyContainer(T *obj, int token, const TQString &value) { SVGElementImpl *element = dynamic_cast<SVGElementImpl *>(obj); if(!element || !element->hasChildNodes()) @@ -67,18 +67,18 @@ public: static void copyAttributes(SVGElementImpl *src, SVGElementImpl *dst); // SVGAnimatedLengthList - static void parseLengthList(SVGAnimatedLengthListImpl *list, const QString &lengths, LengthMode mode = LENGTHMODE_UNKNOWN, SVGElementImpl *object = 0); + static void parseLengthList(SVGAnimatedLengthListImpl *list, const TQString &lengths, LengthMode mode = LENGTHMODE_UNKNOWN, SVGElementImpl *object = 0); // SVGStringList - static void parseList(SVGStringListImpl *list, char seperator, const QString &data); - static void parseCommaSeperatedList(SVGStringListImpl *list, const QString &data); - static void parseSemicolonSeperatedList(SVGStringListImpl *list, const QString &data); + static void parseList(SVGStringListImpl *list, char seperator, const TQString &data); + static void parseCommaSeperatedList(SVGStringListImpl *list, const TQString &data); + static void parseSemicolonSeperatedList(SVGStringListImpl *list, const TQString &data); // SVGTransformList - static void parseTransformAttribute(SVGTransformListImpl *list, const QString &transform); + static void parseTransformAttribute(SVGTransformListImpl *list, const TQString &transform); // Tools - static QRect fromUserspace(SVGElementImpl *, const QRect &); + static TQRect fromUserspace(SVGElementImpl *, const TQRect &); }; } |