diff options
author | George Hazan <george.hazan@gmail.com> | 2024-07-02 15:22:01 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-07-02 15:22:01 +0300 |
commit | 7ea99ae92f255ea2b9df5a3a4711264b967a55fb (patch) | |
tree | 09f33bc34646d4ef5f1d120d33a0d33ebee9205f /plugins/UserInfoEx/src/dlg_propsheet.cpp | |
parent | 4d026bd867d8b1947d566804662c895573fe072b (diff) |
fixes #4507 (UInfoEx: импорт группы вызывает экспорт)
Diffstat (limited to 'plugins/UserInfoEx/src/dlg_propsheet.cpp')
-rw-r--r-- | plugins/UserInfoEx/src/dlg_propsheet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/UserInfoEx/src/dlg_propsheet.cpp b/plugins/UserInfoEx/src/dlg_propsheet.cpp index 4d1805c6d8..344b401f34 100644 --- a/plugins/UserInfoEx/src/dlg_propsheet.cpp +++ b/plugins/UserInfoEx/src/dlg_propsheet.cpp @@ -1268,14 +1268,14 @@ static INT_PTR CALLBACK DlgProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lPar break;
case BTN_IMPORT:
- svcExIm_ContactImport_Service((WPARAM)pPs->hContact, 0);
+ svcImportContact(pPs->hContact, 0);
break;
case BTN_EXPORT:
// save changes before exporting data
DlgProc(hDlg, WM_COMMAND, MAKEWPARAM(IDAPPLY, BN_CLICKED), (LPARAM)GetDlgItem(hDlg, IDAPPLY));
// do the exporting stuff
- svcExIm_ContactExport_Service((WPARAM)pPs->hContact, 0);
+ svcExportContact(pPs->hContact, 0);
break;
}
break;
|