summaryrefslogtreecommitdiffstats
path: root/src/statusbar.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/statusbar.h')
-rw-r--r--src/statusbar.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/statusbar.h b/src/statusbar.h
index 30b80724..2e9fffaa 100644
--- a/src/statusbar.h
+++ b/src/statusbar.h
@@ -13,7 +13,7 @@
#define _STATUSBAR_H_
#include <kstatusbar.h>
-#include <qmap.h>
+#include <tqmap.h>
class QLabel;
@@ -29,18 +29,18 @@ class KDevStatusBar : public KStatusBar
Q_OBJECT
public:
- KDevStatusBar( QWidget *parent=0, const char *name=0 );
+ KDevStatusBar( TQWidget *parent=0, const char *name=0 );
~KDevStatusBar();
- void addWidget ( QWidget *widget, int stretch = 0, bool permanent = FALSE );
+ void addWidget ( TQWidget *widget, int stretch = 0, bool permanent = FALSE );
private slots:
void cursorPositionChanged();
void activePartChanged(KParts::Part *part);
- void setStatus(const QString &str);
+ void setStatus(const TQString &str);
void setCursorPosition(int line, int col);
private:
- QLabel *_status;
+ TQLabel *_status;
KTextEditor::ViewCursorInterface * _cursorIface;
KTextEditor::ViewStatusMsgInterface * _viewmsgIface;