summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmerrordialog.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/pmerrordialog.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/pmerrordialog.h')
-rw-r--r--kpovmodeler/pmerrordialog.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/kpovmodeler/pmerrordialog.h b/kpovmodeler/pmerrordialog.h
index 972d55ab..93981eab 100644
--- a/kpovmodeler/pmerrordialog.h
+++ b/kpovmodeler/pmerrordialog.h
@@ -25,12 +25,12 @@
#endif
#include <kdialogbase.h>
-#include <qvaluelist.h>
-#include <qptrdict.h>
-#include <qptrlist.h>
+#include <tqvaluelist.h>
+#include <tqptrdict.h>
+#include <tqptrlist.h>
class KConfig;
-class QTextEdit;
+class TQTextEdit;
class PMObject;
#include "pmmessage.h"
@@ -49,25 +49,25 @@ public:
* messages is the message list. If the list contains a message of type
* FatalError, the 'Proceed" button will not be shown.
*
- * PMErrorDialog::exec( ) returns QDialog::Accepted if the command
+ * PMErrorDialog::exec( ) returns TQDialog::Accepted if the command
* should be continued.
*/
PMErrorDialog( const PMMessageList& messages, int errorFlags,
- QWidget* parent = 0, const char* name = 0 );
+ TQWidget* parent = 0, const char* name = 0 );
static void saveConfig( KConfig* cfg );
static void restoreConfig( KConfig* cfg );
protected:
- virtual void resizeEvent( QResizeEvent* ev );
+ virtual void resizeEvent( TQResizeEvent* ev );
private:
void displayMessages( );
- static QSize s_size;
- QTextEdit* m_pTextView;
- QPtrDict< QPtrList<PMMessage> > m_messageDict;
- QPtrList<PMMessage> m_messages;
+ static TQSize s_size;
+ TQTextEdit* m_pTextView;
+ TQPtrDict< TQPtrList<PMMessage> > m_messageDict;
+ TQPtrList<PMMessage> m_messages;
};
#endif