summaryrefslogtreecommitdiffstats
path: root/kview/modules/scale/scaledlg.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
commiteba47f8f0637f451e21348187591e1f1fd58ac74 (patch)
tree448f10b95c656604acc331a3236c1e59bde5c1ad /kview/modules/scale/scaledlg.h
parentc7e8736c69373f48b0401319757c742e8607431a (diff)
downloadtdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz
tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kview/modules/scale/scaledlg.h')
-rw-r--r--kview/modules/scale/scaledlg.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/kview/modules/scale/scaledlg.h b/kview/modules/scale/scaledlg.h
index ac5a6c44..71fa23d5 100644
--- a/kview/modules/scale/scaledlg.h
+++ b/kview/modules/scale/scaledlg.h
@@ -21,20 +21,20 @@
#ifndef __scaledlg_h_
#define __scaledlg_h_
-#include <qobject.h>
+#include <tqobject.h>
-class QLabel;
+class TQLabel;
class KFloatSpinBox;
class KComboBox;
-class QCheckBox;
-class QVBox;
-class QSize;
+class TQCheckBox;
+class TQVBox;
+class TQSize;
class ScaleDlg : public QObject
{
Q_OBJECT
public:
- ScaleDlg( const QSize & originalsize, QVBox * parent, const char * name = 0 );
+ ScaleDlg( const TQSize & originalsize, TQVBox * parent, const char * name = 0 );
~ScaleDlg();
private slots:
@@ -49,7 +49,7 @@ class ScaleDlg : public QObject
void slotChangeResolutionUnit( int );
private:
- QSize m_origsize;
+ TQSize m_origsize;
int m_newsizeunit;
int m_newsizeunit2;
int m_resolutionunit;
@@ -57,21 +57,21 @@ class ScaleDlg : public QObject
float m_newwidth, m_newheight; // in Pixel
float m_resx, m_resy; // in dpi
- QLabel * m_pOldWidth;
- QLabel * m_pOldHeight;
+ TQLabel * m_pOldWidth;
+ TQLabel * m_pOldHeight;
KFloatSpinBox * m_pNewWidth;
KFloatSpinBox * m_pNewHeight;
KComboBox * m_pNewSizeUnit;
KFloatSpinBox * m_pRatioX;
KFloatSpinBox * m_pRatioY;
- QCheckBox * m_pLinkRatio;
+ TQCheckBox * m_pLinkRatio;
KFloatSpinBox * m_pNewWidth2;
KFloatSpinBox * m_pNewHeight2;
KComboBox * m_pNewSizeUnit2;
KFloatSpinBox * m_pResolutionX;
KFloatSpinBox * m_pResolutionY;
- QCheckBox * m_pLinkResolution;
+ TQCheckBox * m_pLinkResolution;
KComboBox * m_pResolutionUnit;
};