summaryrefslogtreecommitdiffstats
path: root/kopete/kopete/chatwindow/chattexteditpart.h
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/kopete/chatwindow/chattexteditpart.h')
-rw-r--r--kopete/kopete/chatwindow/chattexteditpart.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kopete/kopete/chatwindow/chattexteditpart.h b/kopete/kopete/chatwindow/chattexteditpart.h
index 3391b8a7..d16567ad 100644
--- a/kopete/kopete/chatwindow/chattexteditpart.h
+++ b/kopete/kopete/chatwindow/chattexteditpart.h
@@ -20,7 +20,7 @@
#include "krichtexteditpart.h"
-#include <qstringlist.h>
+#include <tqstringlist.h>
class QTimer;
@@ -48,7 +48,7 @@ class ChatTextEditPart : public KopeteRichTextEditPart
{
Q_OBJECT
public:
- ChatTextEditPart( Kopete::ChatSession *session, QWidget *parent, const char *name = 0 );
+ ChatTextEditPart( Kopete::ChatSession *session, TQWidget *parent, const char *name = 0 );
~ChatTextEditPart();
/**
@@ -67,7 +67,7 @@ public:
* Adds text into the edit area. Used when an emoticon is selected.
* @param text The text to be inserted
*/
- void addText( const QString &text );
+ void addText( const TQString &text );
/**
* Can we send messages now?
@@ -177,7 +177,7 @@ private slots:
/**
* Update completion to follow changes in users' nicknames
*/
- void slotPropertyChanged( Kopete::Contact *, const QString &key, const QVariant &oldValue, const QVariant &newValue );
+ void slotPropertyChanged( Kopete::Contact *, const TQString &key, const TQVariant &oldValue, const TQVariant &newValue );
private:
KDictSpellingHighlighter* spellHighlighter();
@@ -193,14 +193,14 @@ private:
* index -1 is treated specially; when it is modified, changes are saved to
* a new message placed at index 0.
*/
- QStringList historyList;
+ TQStringList historyList;
int historyPos;
KCompletion *mComplete;
- QString m_lastMatch;
+ TQString m_lastMatch;
- QTimer *m_typingRepeatTimer;
- QTimer *m_typingStopTimer;
+ TQTimer *m_typingRepeatTimer;
+ TQTimer *m_typingStopTimer;
bool m_autoSpellCheckEnabled;
};