summaryrefslogtreecommitdiffstats
path: root/karbon/core/vfill.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-25 05:28:35 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-25 05:28:35 +0000
commitf008adb5a77e094eaf6abf3fc0f36958e66896a5 (patch)
tree8e9244c4d4957c36be81e15b566b4aa5ea26c982 /karbon/core/vfill.h
parent1210f27b660efb7b37ff43ec68763e85a403471f (diff)
downloadkoffice-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/vfill.h')
-rw-r--r--karbon/core/vfill.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/karbon/core/vfill.h b/karbon/core/vfill.h
index 67a31722..d05b8c88 100644
--- a/karbon/core/vfill.h
+++ b/karbon/core/vfill.h
@@ -26,18 +26,18 @@
#include "vpattern.h"
#include <koffice_export.h>
-class QDomElement;
+class TQDomElement;
class KoGenStyle;
class KoGenStyles;
class KoOasisLoadingContext;
/**
- * Manages the fill of shapes.
+ * Manages the fill of tqshapes.
*
* The fill can be solid or gradient.
- * Also two fill rules are supported that effect how the shape is
- * filled. For explanation see the QPainter documentation.
+ * Also two fill rules are supported that effect how the tqshape is
+ * filled. For explanation see the TQPainter documentation.
*
* Default is no fill and even-odd filling rule.
*/
@@ -69,14 +69,14 @@ public:
VFillType type() const { return m_type; }
void setType( VFillType type ) { m_type = type; }
- void save( QDomElement& element ) const;
+ void save( TQDomElement& element ) const;
void saveOasis( KoGenStyles &mainStyles, KoGenStyle &style ) const;
- void load( const QDomElement& element );
- void loadOasis( const QDomElement &object, KoOasisLoadingContext &context, VObject* parent = 0L );
+ void load( const TQDomElement& element );
+ void loadOasis( const TQDomElement &object, KoOasisLoadingContext &context, VObject* tqparent = 0L );
VFill& operator=( const VFill& fill );
- void transform( const QWMatrix& m );
+ void transform( const TQWMatrix& m );
private:
VColor m_color;