diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
commit | eba47f8f0637f451e21348187591e1f1fd58ac74 (patch) | |
tree | 448f10b95c656604acc331a3236c1e59bde5c1ad /kdvi/infodialog.h | |
parent | c7e8736c69373f48b0401319757c742e8607431a (diff) | |
download | tdegraphics-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 'kdvi/infodialog.h')
-rw-r--r-- | kdvi/infodialog.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kdvi/infodialog.h b/kdvi/infodialog.h index 916d0d13..8b3ea7d2 100644 --- a/kdvi/infodialog.h +++ b/kdvi/infodialog.h @@ -9,12 +9,12 @@ #include <kdialogbase.h> -#include <qstring.h> +#include <tqstring.h> class dvifile; class fontPool; -class QTextView; -class QWidget; +class TQTextView; +class TQWidget; class infoDialog : public KDialogBase @@ -22,21 +22,21 @@ class infoDialog : public KDialogBase Q_OBJECT public: - infoDialog( QWidget* parent = 0 ); + infoDialog( TQWidget* parent = 0 ); /** This method is used to set the data coming from the DVI file. Note that 0 is a permissible argument, that just means: "no file loaded" */ void setDVIData(dvifile *dviFile); - QTextView* TextLabel1; - QTextView* TextLabel2; - QTextView* TextLabel3; + TQTextView* TextLabel1; + TQTextView* TextLabel2; + TQTextView* TextLabel3; public slots: /** This slot is called when Output from the MetaFont programm is received via the fontpool/kpsewhich */ - void outputReceiver(const QString&); + void outputReceiver(const TQString&); /** This slot is called whenever anything in the fontpool has changed. If the infoDialog is shown, the dialog could then @@ -47,12 +47,12 @@ public slots: headline. The next time output is received via the outputReceiver, the headline is displayed in bold on top of the text view. */ - void clear(const QString&); + void clear(const TQString&); protected: bool MFOutputReceived; - QString headline; - QString pool; + TQString headline; + TQString pool; }; #endif // INFO_KDVI_H |