summaryrefslogtreecommitdiffstats
path: root/kghostview/kdscerrordialog.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 /kghostview/kdscerrordialog.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 'kghostview/kdscerrordialog.h')
-rw-r--r--kghostview/kdscerrordialog.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/kghostview/kdscerrordialog.h b/kghostview/kdscerrordialog.h
index 0aee24d2..67d3dd4a 100644
--- a/kghostview/kdscerrordialog.h
+++ b/kghostview/kdscerrordialog.h
@@ -23,9 +23,9 @@
#include "dscparse_adapter.h"
-class QLabel;
-class QPushButton;
-class QTextEdit;
+class TQLabel;
+class TQPushButton;
+class TQTextEdit;
class KDSCErrorThreshold : public KDSCErrorHandler
{
@@ -44,12 +44,12 @@ class KDSCErrorDialog : public KDialog, public KDSCErrorHandler
Q_OBJECT
public:
- KDSCErrorDialog( QWidget* parent = 0 );
+ KDSCErrorDialog( TQWidget* parent = 0 );
Response error( const KDSCError& );
protected:
- QString description( KDSCError::Type ) const;
+ TQString description( KDSCError::Type ) const;
protected slots:
void slotOk();
@@ -57,13 +57,13 @@ protected slots:
void slotIgnoreAll();
private:
- QLabel* _lineNumberLabel;
- QTextEdit* _lineLabel;
- QLabel* _descriptionLabel;
+ TQLabel* _lineNumberLabel;
+ TQTextEdit* _lineLabel;
+ TQLabel* _descriptionLabel;
- QPushButton* _okButton;
- QPushButton* _cancelButton;
- QPushButton* _ignoreAllButton;
+ TQPushButton* _okButton;
+ TQPushButton* _cancelButton;
+ TQPushButton* _ignoreAllButton;
Response _response;
};