summaryrefslogtreecommitdiffstats
path: root/kpresenter/KPrMoveHelpLineDia.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/KPrMoveHelpLineDia.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/KPrMoveHelpLineDia.h')
-rw-r--r--kpresenter/KPrMoveHelpLineDia.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/kpresenter/KPrMoveHelpLineDia.h b/kpresenter/KPrMoveHelpLineDia.h
index 5990bb80..7bed8b88 100644
--- a/kpresenter/KPrMoveHelpLineDia.h
+++ b/kpresenter/KPrMoveHelpLineDia.h
@@ -24,7 +24,7 @@
#include <kdialogbase.h>
#include <KoRect.h>
-class QRadioButton;
+class TQRadioButton;
class KPrDocument;
class KLineEdit;
class KFloatValidator;
@@ -33,8 +33,9 @@ class KoUnitDoubleSpinBox;
class KPrMoveHelpLineDia : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
- KPrMoveHelpLineDia( QWidget *parent, double value, double limitTop, double limitBottom,
+ KPrMoveHelpLineDia( TQWidget *tqparent, double value, double limitTop, double limitBottom,
KPrDocument *_doc, const char *name=0L);
double newPosition() const;
@@ -52,8 +53,9 @@ protected:
class KPrInsertHelpLineDia : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
- KPrInsertHelpLineDia( QWidget *parent, const KoRect &r, KPrDocument *_doc, const char *name=0L);
+ KPrInsertHelpLineDia( TQWidget *tqparent, const KoRect &r, KPrDocument *_doc, const char *name=0L);
double newPosition() const;
//return true if we add a new horizontal line help
@@ -65,8 +67,8 @@ private slots:
protected:
KoRect limitOfPage;
KoUnitDoubleSpinBox* position;
- QRadioButton *m_rbHoriz;
- QRadioButton *m_rbVert;
+ TQRadioButton *m_rbHoriz;
+ TQRadioButton *m_rbVert;
KPrDocument *m_doc;
};
@@ -74,8 +76,9 @@ protected:
class KPrInsertHelpPointDia : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
- KPrInsertHelpPointDia( QWidget *parent, const KoRect &r, KPrDocument *_doc, double poxX=0.0,
+ KPrInsertHelpPointDia( TQWidget *tqparent, const KoRect &r, KPrDocument *_doc, double poxX=0.0,
double posY=0.0, const char *name=0L);
KoPoint newPosition() const;