diff options
author | George Hazan <george.hazan@gmail.com> | 2016-08-10 15:41:23 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-08-10 15:41:23 +0000 |
commit | db146a5cb80ab954dfb5c0e6a97930b830352846 (patch) | |
tree | 5a8669ece564991f9e109545020df9f55805c50a /plugins/TabSRMM/src/chat | |
parent | f7bdc97d3a76f14d28866f60b2e44f9e1e7f98bf (diff) |
- unused variable logIconBmpSize removed;
- last remaining buffer/bufAlloced replaced with CMStringA
git-svn-id: http://svn.miranda-ng.org/main/trunk@17173 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM/src/chat')
-rw-r--r-- | plugins/TabSRMM/src/chat/log.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/chat/log.cpp b/plugins/TabSRMM/src/chat/log.cpp index fc0a3a3169..61b4431505 100644 --- a/plugins/TabSRMM/src/chat/log.cpp +++ b/plugins/TabSRMM/src/chat/log.cpp @@ -740,7 +740,7 @@ static char* Log_CreateRTF(LOGSTREAMDATA *streamData) else if (g_Settings.dwIconFlags) {
int iIndex = lin->bIsHighlighted ? ICON_HIGHLIGHT : EventToIcon(lin);
str.Append("\\f0\\fs14");
- str.AppendFormat(pci->pLogIconBmpBits[iIndex], (int)pci->logIconBmpSize[iIndex]);
+ str.Append(pci->pLogIconBmpBits[iIndex]);
}
if (g_Settings.bTimeStampEventColour) {
|