summaryrefslogtreecommitdiffstats
path: root/kommander/editor/messagelog.h
diff options
context:
space:
mode:
Diffstat (limited to 'kommander/editor/messagelog.h')
-rw-r--r--kommander/editor/messagelog.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kommander/editor/messagelog.h b/kommander/editor/messagelog.h
index 6b071cf4..468a7d23 100644
--- a/kommander/editor/messagelog.h
+++ b/kommander/editor/messagelog.h
@@ -17,7 +17,7 @@
#ifndef MESSAGELOG_H
#define MESSAGELOG_H
-#include <qtabwidget.h>
+#include <tqtabwidget.h>
#include <klocale.h>
@@ -31,11 +31,11 @@ class MessageLog : public QTabWidget
Q_OBJECT
public:
enum InfoType {Stdout, Stderr, All};
- MessageLog(QWidget* parent = 0, const char* name = 0);
+ MessageLog(TQWidget* parent = 0, const char* name = 0);
~MessageLog();
- virtual void insertItem(InfoType i, QString text);
+ virtual void insertItem(InfoType i, TQString text);
virtual void clear(InfoType i = All);
- QString content();
+ TQString content();
public slots:
void receivedStdout(KProcess *proc, char *buffer, int buflen);
void receivedStderr(KProcess *proc, char *buffer, int buflen);
@@ -43,10 +43,10 @@ public slots:
void copyLine();
void copyContent();
void saveToFile();
- void showMenu(QListBoxItem*, const QPoint& l_point);
+ void showMenu(TQListBoxItem*, const TQPoint& l_point);
private:
static const int m_listCount = 2;
- static QString m_listNames[m_listCount];
+ static TQString m_listNames[m_listCount];
KListBox* m_lists[m_listCount];
bool m_seenEOL[m_listCount];
KPopupMenu* m_popupMenu;