diff options
Diffstat (limited to 'ksirc/iocontroller.h')
-rw-r--r-- | ksirc/iocontroller.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ksirc/iocontroller.h b/ksirc/iocontroller.h index 76c97e18..2e7e79f6 100644 --- a/ksirc/iocontroller.h +++ b/ksirc/iocontroller.h @@ -1,7 +1,7 @@ #ifndef IOCONTROL_H #define IOCONTROL_H -#include <qobject.h> +#include <tqobject.h> class KProcess; class KSircProcess; @@ -24,31 +24,31 @@ public slots: virtual void stdout_read(KProcess *proc, char *_buffer, int buflen); virtual void stderr_read(KProcess *proc, char *_buffer, int buflen); - virtual void stdin_write(QCString); + virtual void stdin_write(TQCString); virtual void sircDied(KProcess *); - virtual void appendDebug(QString); + virtual void appendDebug(TQString); protected slots: virtual void procCTS(KProcess *); private slots: - void showContextMenuOnDebugWindow( QListBoxItem *, const QPoint &pos ); + void showContextMenuOnDebugWindow( TQListBoxItem *, const TQPoint &pos ); private: - QCString holder; + TQCString holder; bool proc_CTS; KProcess *proc; KSircProcess *ksircproc; char *send_buf; - QCString buffer; + TQCString buffer; static int counter; - QListBox *m_debugLB; + TQListBox *m_debugLB; }; #endif |