summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmlibraryhandleedit.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 /kpovmodeler/pmlibraryhandleedit.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 'kpovmodeler/pmlibraryhandleedit.h')
-rw-r--r--kpovmodeler/pmlibraryhandleedit.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/kpovmodeler/pmlibraryhandleedit.h b/kpovmodeler/pmlibraryhandleedit.h
index d0f53bb2..d57b8e5e 100644
--- a/kpovmodeler/pmlibraryhandleedit.h
+++ b/kpovmodeler/pmlibraryhandleedit.h
@@ -25,10 +25,10 @@
#include <kdialogbase.h>
-class QLineEdit;
-class QTextEdit;
-class QListBox;
-class QCheckBox;
+class TQLineEdit;
+class TQTextEdit;
+class TQListBox;
+class TQCheckBox;
class PMLibraryHandle;
/**
@@ -42,25 +42,25 @@ public:
* Construct a dialog to edit the properties of lib. The library will be
* modified only if Ok is pressed.
*/
- PMLibraryHandleEdit( PMLibraryHandle* lib, QWidget *parent = NULL, const char* name = NULL );
+ PMLibraryHandleEdit( PMLibraryHandle* lib, TQWidget *parent = NULL, const char* name = NULL );
static void saveConfig( KConfig* cfg );
static void restoreConfig( KConfig* cfg );
- static QSize s_size;
+ static TQSize s_size;
private slots:
void slotOk( );
- void slotEditsChanged( const QString& );
+ void slotEditsChanged( const TQString& );
void slotDescriptionChanged( );
void slotReadOnlyChanged( );
- void resizeEvent( QResizeEvent *ev );
+ void resizeEvent( TQResizeEvent *ev );
private:
PMLibraryHandle* m_pLibrary;
- QLineEdit* m_pNameEdit;
- QLineEdit* m_pAuthorEdit;
- QTextEdit* m_pDescriptionEdit;
- QCheckBox* m_pReadOnlyEdit;
+ TQLineEdit* m_pNameEdit;
+ TQLineEdit* m_pAuthorEdit;
+ TQTextEdit* m_pDescriptionEdit;
+ TQCheckBox* m_pReadOnlyEdit;
};
#endif