diff options
author | George Hazan <ghazan@miranda.im> | 2016-12-13 20:27:43 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2016-12-13 20:27:43 +0300 |
commit | 4770a5e9184ded282139e66782afdd6d04010ee5 (patch) | |
tree | 685c8ec059777d343b14812dd6bb748422ed2ee8 /plugins/TabSRMM/src/chat/tools.cpp | |
parent | bc382bfeb00236e2dbbb143cfe35dd3716a2f7e2 (diff) |
common chat code moved to the core
Diffstat (limited to 'plugins/TabSRMM/src/chat/tools.cpp')
-rw-r--r-- | plugins/TabSRMM/src/chat/tools.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/chat/tools.cpp b/plugins/TabSRMM/src/chat/tools.cpp index 55d6578512..0b0f309a6f 100644 --- a/plugins/TabSRMM/src/chat/tools.cpp +++ b/plugins/TabSRMM/src/chat/tools.cpp @@ -671,7 +671,7 @@ char GetIndicator(SESSION_INFO *si, LPCTSTR ptszNick, int *iNickIndex) return 0;
}
-BOOL IsHighlighted(SESSION_INFO *si, GCEVENT *gce)
+bool IsHighlighted(SESSION_INFO *si, GCEVENT *gce)
{
if (!g_Settings.bHighlightEnabled || !gce || gce->bIsMe)
return FALSE;
|