summaryrefslogtreecommitdiffstats
path: root/src/kvilib/irc/kvi_mirccntrl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kvilib/irc/kvi_mirccntrl.h')
-rw-r--r--src/kvilib/irc/kvi_mirccntrl.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/kvilib/irc/kvi_mirccntrl.h b/src/kvilib/irc/kvi_mirccntrl.h
index c3028568..b02165d0 100644
--- a/src/kvilib/irc/kvi_mirccntrl.h
+++ b/src/kvilib/irc/kvi_mirccntrl.h
@@ -91,9 +91,9 @@
// 006 ACK Acknowledge (Not so good, but can be used as last resource)
// 007 BEL Bell ( Recognized as bell by terminals and IRCII ) (Used also by some IRC servers)
// 008 BS Backspace (Should not be assigned: terminal control)
-// 009 HT Horizontal tabulation (Should not be assigned: terminal control)
+// 009 HT Qt::Horizontal tabulation (Should not be assigned: terminal control)
// 010 LF Line feed (Should not be assigned: terminal control)
-// 011 VT Vertical tabulation (Should not be assigned: terminal control)
+// 011 VT Qt::Vertical tabulation (Should not be assigned: terminal control)
// 012 FF Form feed (Should not be assigned: terminal control)
// 013 CR Carriage return (Should not be assigned: terminal control)
// 014 SO Shift out (Should not be assigned: terminal control)
@@ -148,15 +148,15 @@
#ifndef _KVI_MIRCCNTRL_CPP_
extern KVILIB_API const char * getColorBytes(const char *data_ptr,unsigned char *byte_1,unsigned char *byte_2);
extern KVILIB_API const kvi_wchar_t * getColorBytesW(const kvi_wchar_t *data_ptr,unsigned char *byte_1,unsigned char *byte_2);
- extern KVILIB_API unsigned int getUnicodeColorBytes(const QString &szData,unsigned int charIdx,unsigned char *byte_1,unsigned char *byte_2);
- inline const QChar * getUnicodeColorBytes(const QChar *pData,unsigned char *byte_1,unsigned char *byte_2)
- { return (QChar *)getColorBytesW((const kvi_wchar_t *)pData,byte_1,byte_2); };
+ extern KVILIB_API unsigned int getUnicodeColorBytes(const TQString &szData,unsigned int charIdx,unsigned char *byte_1,unsigned char *byte_2);
+ inline const TQChar * getUnicodeColorBytes(const TQChar *pData,unsigned char *byte_1,unsigned char *byte_2)
+ { return (TQChar *)getColorBytesW((const kvi_wchar_t *)pData,byte_1,byte_2); };
#endif
namespace KviMircCntrl
{
- KVILIB_API QString stripControlBytes(const QString &szData);
+ KVILIB_API TQString stripControlBytes(const TQString &szData);
}