diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2016-01-21 15:57:14 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2016-01-21 15:57:14 +0000 |
commit | c2750370094b75caf31f50051634f26fba6084f5 (patch) | |
tree | b5efb0a14081c90a6bc4f44c1ff9fed1fd55d8fe | |
parent | 4f1716aa2d7200be88afd04e96b45b51e9269ad5 (diff) |
if setting not found, returns undefined
git-svn-id: http://svn.miranda-ng.org/main/trunk@16138 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/IEView/src/external_funcs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/IEView/src/external_funcs.cpp b/plugins/IEView/src/external_funcs.cpp index 599734805b..6550b928fd 100644 --- a/plugins/IEView/src/external_funcs.cpp +++ b/plugins/IEView/src/external_funcs.cpp @@ -14,7 +14,7 @@ namespace External DBVARIANT dbv = { 0 };
if (db_get(hContact, _T2A((TCHAR*)szModule), _T2A((TCHAR*)szSetting), &dbv))
- return E_FAIL;
+ return S_OK;
if (pVarResult != nullptr)
{
|