summaryrefslogtreecommitdiffstats
path: root/kpresenter/KPrObjectProperties.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 /kpresenter/KPrObjectProperties.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 'kpresenter/KPrObjectProperties.h')
-rw-r--r--kpresenter/KPrObjectProperties.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kpresenter/KPrObjectProperties.h b/kpresenter/KPrObjectProperties.h
index 3f794db0f..b1e67aa63 100644
--- a/kpresenter/KPrObjectProperties.h
+++ b/kpresenter/KPrObjectProperties.h
@@ -39,7 +39,7 @@ public:
PtPenWidth = 512
};
- KPrObjectProperties( const QPtrList<KPrObject> &objects );
+ KPrObjectProperties( const TQPtrList<KPrObject> &objects );
~KPrObjectProperties();
int getPropertyFlags() { return m_flags; }
@@ -56,13 +56,13 @@ public:
KPrPieValueCmd::PieValues getPieValues() const { return m_pieValues; }
// get picture properties
KPrPictureSettingCmd::PictureSettings getPictureSettings() const { return m_pictureSettings; }
- const QPixmap &getPixmap() const { return m_pixmap; }
+ const TQPixmap &getPixmap() const { return m_pixmap; }
/// get text properties
MarginsStruct getMarginsStruct() { return m_marginsStruct; }
PropValue getProtectContent() { return m_protectContent; }
protected:
- void getProperties( const QPtrList<KPrObject> &objects );
+ void getProperties( const TQPtrList<KPrObject> &objects );
void getPenProperties( KPrObject *object );
void getLineEndsProperties( KPrObject *object );
@@ -74,7 +74,7 @@ protected:
void getTextProperties( KPrObject *object );
private:
- QPtrList<KPrObject> m_objects;
+ TQPtrList<KPrObject> m_objects;
int m_flags;
/// pen properties
@@ -89,7 +89,7 @@ private:
KPrPieValueCmd::PieValues m_pieValues;
/// picture properties
KPrPictureSettingCmd::PictureSettings m_pictureSettings;
- QPixmap m_pixmap;
+ TQPixmap m_pixmap;
/// text properties
MarginsStruct m_marginsStruct;
PropValue m_protectContent;