diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-10-02 16:30:03 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-10-02 16:30:03 +0000 |
commit | 64cfd8d4bd3a5d0da31eab8df5356f697f3d1dc4 (patch) | |
tree | 8508395d7388e6fa63160535dffb9b6d6d7a48dd /plugins/IEView/src/ScriverHTMLBuilder.cpp | |
parent | 76403b8fa94edb904ddf9a6b5426b193062e08bf (diff) |
IEView: flash avatars removed; other fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@15490 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/IEView/src/ScriverHTMLBuilder.cpp')
-rw-r--r-- | plugins/IEView/src/ScriverHTMLBuilder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/IEView/src/ScriverHTMLBuilder.cpp b/plugins/IEView/src/ScriverHTMLBuilder.cpp index 566bdf8e51..afaab42afb 100644 --- a/plugins/IEView/src/ScriverHTMLBuilder.cpp +++ b/plugins/IEView/src/ScriverHTMLBuilder.cpp @@ -310,9 +310,9 @@ void ScriverHTMLBuilder::appendEventNonTemplate(IEView *view, IEVIEWEVENT *event }
else {
if (eventData->iType == IEED_EVENT_MESSAGE)
- className = isRTL ? isSent ? "divOutRTL" : "divInRTL" : isSent ? "divOut" : "divIn";
+ className = isRTL ? (isSent ? "divOutRTL" : "divInRTL") : (isSent ? "divOut" : "divIn");
else
- className = isRTL ? isSent ? "divNoticeRTL" : "divNoticeRTL" : isSent ? "divNotice" : "divNotice";
+ className = isRTL ? "divNoticeRTL" : (isSent ? "divNotice" : "divNotice");
}
CMStringA str;
|