diff options
Diffstat (limited to 'plugins/Msg_Export/src/options.cpp')
-rwxr-xr-x | plugins/Msg_Export/src/options.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Msg_Export/src/options.cpp b/plugins/Msg_Export/src/options.cpp index 0215b02ff4..5d61ced0a1 100755 --- a/plugins/Msg_Export/src/options.cpp +++ b/plugins/Msg_Export/src/options.cpp @@ -530,14 +530,14 @@ public: if (listUsers.GetItem(&sItem)) {
MCONTACT hUser = (MCONTACT)sItem.lParam;
if (mir_wstrlen(szTemp) > 0)
- db_set_ws(hUser, MODULENAME, "FileName", szTemp);
+ g_plugin.setWString(hUser, "FileName", szTemp);
else
- db_unset(hUser, MODULENAME, "FileName");
+ g_plugin.delSetting(hUser, "FileName");
if (listUsers.GetCheckState(nCur))
- db_unset(hUser, MODULENAME, "EnableLog");
+ g_plugin.delSetting(hUser, "EnableLog");
else
- db_set_b(hUser, MODULENAME, "EnableLog", 0);
+ g_plugin.setByte(hUser, "EnableLog", 0);
}
}
UpdateFileToColWidth();
|