diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-25 05:28:35 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-25 05:28:35 +0000 |
commit | f008adb5a77e094eaf6abf3fc0f36958e66896a5 (patch) | |
tree | 8e9244c4d4957c36be81e15b566b4aa5ea26c982 /karbon/core/vobject_iface.h | |
parent | 1210f27b660efb7b37ff43ec68763e85a403471f (diff) | |
download | koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.tar.gz koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.zip |
TQt4 port koffice
This should enable compilation under both Qt3 and Qt4; fixes for any missed components will be forthcoming
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1238284 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'karbon/core/vobject_iface.h')
-rw-r--r-- | karbon/core/vobject_iface.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/karbon/core/vobject_iface.h b/karbon/core/vobject_iface.h index e1684ba2..e4a645ca 100644 --- a/karbon/core/vobject_iface.h +++ b/karbon/core/vobject_iface.h @@ -23,7 +23,7 @@ #include <KoRect.h> class VObject; -class QDomElement; +class TQDomElement; class VFill; class VPainter; class VStroke; @@ -44,10 +44,10 @@ k_dcop: const KoRect& boundingBox() const { return m_boundingBox; } bool boundingBoxIsInvalid() const; - void invalidateBoundingBox(); - void setParent( VObject* parent ) { m_parent = parent; }*/ + void tqinvalidateBoundingBox(); + void setParent( VObject* tqparent ) { m_parent = tqparent; }*/ - DCOPRef parent() const; + DCOPRef tqparent() const; int state() const; void setState( int state ); @@ -56,8 +56,8 @@ k_dcop: VFill* fill() const { return m_fill; } void setStroke( const VStroke& stroke ); void setFill( const VFill& fill ); - void save( QDomElement& element ) const; - void load( const QDomElement& element ); + void save( TQDomElement& element ) const; + void load( const TQDomElement& element ); VObject* clone() const = 0; void accept( VVisitor& ) {} void insertInfrontOf( VObject* , VObject* ) { }*/ |