diff options
author | George Hazan <george.hazan@gmail.com> | 2012-10-03 19:40:07 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-10-03 19:40:07 +0000 |
commit | 3f722b71f4ad6900de300d3a20b98d1184cd2943 (patch) | |
tree | c57507844b27a836b08379089e047d1eaa402d8f /plugins/IEView/src | |
parent | d8d5f055d5bccac50ff9fff2f206fa203a34c205 (diff) |
andalso a fix for flash-based avatars too
git-svn-id: http://svn.miranda-ng.org/main/trunk@1778 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/IEView/src')
-rw-r--r-- | plugins/IEView/src/TextToken.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/IEView/src/TextToken.cpp b/plugins/IEView/src/TextToken.cpp index 6f696ec792..4d911c9bf7 100644 --- a/plugins/IEView/src/TextToken.cpp +++ b/plugins/IEView/src/TextToken.cpp @@ -696,7 +696,7 @@ void TextToken::toString(wchar_t **str, int *sizeAlloced) { L"<span title=\"%s\" class=\"img\"><object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" \
codebase=\"http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0\" >\
<param NAME=\"movie\" VALUE=\"%s\"><param NAME=\"quality\" VALUE=\"high\"><PARAM NAME=\"loop\" VALUE=\"true\"></object></span><span style=\"position:absolute; visibility:hidden;\">%s</span>",
- wlink, eText);
+ eText, wlink, eText);
} else if ((Options::getGeneralFlags()&Options::GENERAL_ENABLE_PNGHACK) && (wcsstr(wlink, L".png")!=NULL)) {
Utils::appendText(str, sizeAlloced, L"<img class=\"img\" style=\"height:1px;width:1px;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='%s',sizingMethod='image');\" title=\"%s\" alt=\"%s\"/><span style=\"position:absolute; visibility:hidden;\">%s</span>", wlink, eText, eText, eText);
} else {
|