diff options
Diffstat (limited to 'plugins/TabSRMM/src/utils.cpp')
-rw-r--r-- | plugins/TabSRMM/src/utils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/TabSRMM/src/utils.cpp b/plugins/TabSRMM/src/utils.cpp index 3a9884dd52..11b33951c0 100644 --- a/plugins/TabSRMM/src/utils.cpp +++ b/plugins/TabSRMM/src/utils.cpp @@ -143,7 +143,7 @@ TCHAR* Utils::FilterEventMarkers(TCHAR *wszText) /**
* this translates formatting tags into rtf sequences...
* flags: loword = words only for simple * /_ formatting
- * hiword = bbcode support (strip bbcodes if 0)
+ *hiword = bbcode support (strip bbcodes if 0)
*/
const TCHAR* Utils::FormatRaw(TWindowData *dat, const TCHAR *msg, int flags, BOOL isSent)
{
@@ -677,7 +677,7 @@ void Utils::CreateColorMap(TCHAR *Text) int Utils::RTFColorToIndex(int iCol)
{
- int i = 0;
+ int i=0;
for (i=0; i < RTF_CTABLE_DEFSIZE; i++) {
if (rtf_ctable[i].index == iCol)
return i + 1;
|