summaryrefslogtreecommitdiffstats
path: root/ksvg/impl/SVGPatternElementImpl.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
commiteba47f8f0637f451e21348187591e1f1fd58ac74 (patch)
tree448f10b95c656604acc331a3236c1e59bde5c1ad /ksvg/impl/SVGPatternElementImpl.h
parentc7e8736c69373f48b0401319757c742e8607431a (diff)
downloadtdegraphics-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/SVGPatternElementImpl.h')
-rw-r--r--ksvg/impl/SVGPatternElementImpl.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/ksvg/impl/SVGPatternElementImpl.h b/ksvg/impl/SVGPatternElementImpl.h
index 612fcfae..0c9abc8e 100644
--- a/ksvg/impl/SVGPatternElementImpl.h
+++ b/ksvg/impl/SVGPatternElementImpl.h
@@ -21,8 +21,8 @@
#ifndef SVGPatternElementImpl_H
#define SVGPatternElementImpl_H
-#include <qimage.h>
-#include <qwmatrix.h>
+#include <tqimage.h>
+#include <tqwmatrix.h>
#include "SVGTestsImpl.h"
#include "SVGElementImpl.h"
@@ -72,21 +72,21 @@ public:
SVGUnitConverter *converter() const { return m_converter; }
- void reference(const QString &href);
+ void reference(const TQString &href);
void finalizePaintServer();
class Tile
{
public:
Tile() {}
- Tile(const QImage& image, const QWMatrix& screenToTile) : m_image(image), m_screenToTile(screenToTile) {}
+ Tile(const TQImage& image, const TQWMatrix& screenToTile) : m_image(image), m_screenToTile(screenToTile) {}
- QImage image() const { return m_image; }
- const QWMatrix& screenToTile() const { return m_screenToTile; }
+ TQImage image() const { return m_image; }
+ const TQWMatrix& screenToTile() const { return m_screenToTile; }
private:
- QImage m_image;
- QWMatrix m_screenToTile;
+ TQImage m_image;
+ TQWMatrix m_screenToTile;
};
Tile createTile(SVGShapeImpl *referencingElement);
@@ -94,7 +94,7 @@ public:
static void flushCachedTiles();
private:
- QImage createTile(SVGShapeImpl *referencingElement, int imageWidth, int imageHeight);
+ TQImage createTile(SVGShapeImpl *referencingElement, int imageWidth, int imageHeight);
SVGAnimatedEnumerationImpl *m_patternUnits;
SVGAnimatedEnumerationImpl *m_patternContentUnits;
@@ -108,9 +108,9 @@ private:
KSVGCanvas *m_canvas;
SVGElementImpl *m_location; // the referenced element
- MinOneLRUCache<QSize, QImage> m_tileCache;
+ MinOneLRUCache<TQSize, TQImage> m_tileCache;
- static QValueList<SVGPatternElementImpl *> m_patternElements;
+ static TQValueList<SVGPatternElementImpl *> m_patternElements;
public:
KSVG_GET