diff options
author | George Hazan <george.hazan@gmail.com> | 2013-06-23 22:02:44 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-06-23 22:02:44 +0000 |
commit | 01b7a72d43ed1c71544c22c7afb61829762ffe8e (patch) | |
tree | b4c570f41c69097492329b9d18a64f0b42f585ef /src/modules/database | |
parent | 037286255b6a26ed5fba94c5fe9e68b88c1755f7 (diff) |
same for some another plugins
git-svn-id: http://svn.miranda-ng.org/main/trunk@5104 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/database')
-rw-r--r-- | src/modules/database/dbini.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/modules/database/dbini.cpp b/src/modules/database/dbini.cpp index 8ccf5af4d5..6b56ad2f9a 100644 --- a/src/modules/database/dbini.cpp +++ b/src/modules/database/dbini.cpp @@ -274,10 +274,7 @@ static void ProcessIniFile(TCHAR* szIniPath, char *szSafeSections, char *szUnsaf while (setting_items) {
SettingsList *next = setting_items->next;
- DBCONTACTGETSETTING dbcgs;
- dbcgs.szModule = szSection;
- dbcgs.szSetting = setting_items->name;
- CallService(MS_DB_CONTACT_DELETESETTING, 0, (LPARAM)&dbcgs);
+ db_unset(NULL, szSection, setting_items->name);
mir_free(setting_items->name);
mir_free(setting_items);
|