diff options
Diffstat (limited to 'src/kile/kilestatswidget.h')
-rw-r--r-- | src/kile/kilestatswidget.h | 57 |
1 files changed, 29 insertions, 28 deletions
diff --git a/src/kile/kilestatswidget.h b/src/kile/kilestatswidget.h index d30ee64..20754b5 100644 --- a/src/kile/kilestatswidget.h +++ b/src/kile/kilestatswidget.h @@ -17,48 +17,49 @@ #ifndef KILEWIDGETSTATISTICS_H #define KILEWIDGETSTATISTICS_H -#include <qvariant.h> -#include <qwidget.h> +#include <tqvariant.h> +#include <tqwidget.h> -class QVBoxLayout; -class QGridLayout; -class QLabel; -class QGroupBox; +class TQVBoxLayout; +class TQGridLayout; +class TQLabel; +class TQGroupBox; -class KileWidgetStatistics : public QWidget +class KileWidgetStatistics : public TQWidget { Q_OBJECT + TQ_OBJECT public: - KileWidgetStatistics( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); + KileWidgetStatistics( TQWidget* tqparent = 0, const char* name = 0, WFlags fl = 0 ); ~KileWidgetStatistics(); - QLabel* m_commentAboutHelp; - QLabel* m_warning; + TQLabel* m_commentAboutHelp; + TQLabel* m_warning; - QLabel* m_wordChar; - QLabel* m_commandChar; - QLabel* m_whitespaceChar; - QLabel* m_totalChar; - QLabel* m_wordCharText; - QLabel* m_commandCharText; - QLabel* m_whitespaceCharText; - QLabel* m_totalCharText; + TQLabel* m_wordChar; + TQLabel* m_commandChar; + TQLabel* m_whitespaceChar; + TQLabel* m_totalChar; + TQLabel* m_wordCharText; + TQLabel* m_commandCharText; + TQLabel* m_whitespaceCharText; + TQLabel* m_totalCharText; - QLabel* m_wordString; - QLabel* m_environmentString; - QLabel* m_commandString; - QLabel* m_totalString; - QLabel* m_wordStringText; - QLabel* m_environmentStringText; - QLabel* m_commandStringText; - QLabel* m_totalStringText; + TQLabel* m_wordString; + TQLabel* m_environmentString; + TQLabel* m_commandString; + TQLabel* m_totalString; + TQLabel* m_wordStringText; + TQLabel* m_environmentStringText; + TQLabel* m_commandStringText; + TQLabel* m_totalStringText; void updateColumns(); private: - QGridLayout *chargrouplayout; - QGridLayout *stringgrouplayout; + TQGridLayout *chargrouptqlayout; + TQGridLayout *stringgrouptqlayout; }; |