summaryrefslogtreecommitdiffstats
path: root/kword/KWTextImage.h
diff options
context:
space:
mode:
Diffstat (limited to 'kword/KWTextImage.h')
-rw-r--r--kword/KWTextImage.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kword/KWTextImage.h b/kword/KWTextImage.h
index 19f7c334a..9c3bbf47c 100644
--- a/kword/KWTextImage.h
+++ b/kword/KWTextImage.h
@@ -37,7 +37,7 @@ public:
* Set filename to load a real file from the disk
* Otherwise use setImage() - this is what's done on loading
*/
- KWTextImage( KWTextDocument *textdoc, const QString & filename );
+ KWTextImage( KWTextDocument *textdoc, const TQString & filename );
~KWTextImage()
{
// Remove image from collection ?
@@ -52,14 +52,14 @@ public:
KoPicture image() const { return m_image; }
- virtual void drawCustomItem( QPainter* p, int x, int y, int wpix, int hpix, int ascentpix, int cx, int cy, int cw, int ch, const QColorGroup& cg, bool selected, int offset, bool drawingShadow );
+ virtual void drawCustomItem( TQPainter* p, int x, int y, int wpix, int hpix, int ascentpix, int cx, int cy, int cw, int ch, const TQColorGroup& cg, bool selected, int offset, bool drawingShadow );
// Save to XML
- virtual void save( QDomElement & formatElem );
+ virtual void save( TQDomElement & formatElem );
virtual void saveOasis( KoXmlWriter&, KoSavingContext& ) const;
virtual int typeId() const { return 2; }
- void load( QDomElement & formatElem );
+ void load( TQDomElement & formatElem );
/**
* Get the key of the picture
@@ -68,7 +68,7 @@ public:
private:
Placement place;
KoPicture m_image;
- QSize m_size; // Size of image
+ TQSize m_size; // Size of image
};
#endif