OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-2015 Eyeo GmbH | 3 * Copyright (C) 2006-2015 Eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
445 break; | 445 break; |
446 case dispatchID_GetConversion: | 446 case dispatchID_GetConversion: |
447 { | 447 { |
448 if (pDispparams->cArgs != 0) | 448 if (pDispparams->cArgs != 0) |
449 { | 449 { |
450 return DISP_E_BADPARAMCOUNT; | 450 return DISP_E_BADPARAMCOUNT; |
451 } | 451 } |
452 if (pVarResult) | 452 if (pVarResult) |
453 { | 453 { |
454 pVarResult->vt = VT_BSTR; | 454 pVarResult->vt = VT_BSTR; |
455 pVarResult->bstrVal = CComBSTR(CPluginClient::GetInstance()->GetPref(s
td::wstring(L"convertedFrom"), std::wstring(L"")).c_str()); | 455 pVarResult->bstrVal = CComBSTR(CPluginClient::GetInstance()->GetPref(L
"convertedFrom", L"").c_str()); |
456 } | 456 } |
457 } | 457 } |
458 break; | 458 break; |
459 default: | 459 default: |
460 return DISP_E_MEMBERNOTFOUND; | 460 return DISP_E_MEMBERNOTFOUND; |
461 break; | 461 break; |
462 } | 462 } |
463 } | 463 } |
464 catch (...) | 464 catch (...) |
465 { | 465 { |
466 return E_FAIL; | 466 return E_FAIL; |
467 } | 467 } |
468 return S_OK; | 468 return S_OK; |
469 } | 469 } |
OLD | NEW |