diff options
author | George Hazan <ghazan@miranda.im> | 2018-05-20 16:19:56 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-05-20 16:19:56 +0300 |
commit | e2530b85347a8e0a3344174c3575284a76f512aa (patch) | |
tree | af7282360d4c57aa26c1d9de260505583076c933 /plugins/UserInfoEx/src/classPsTree.cpp | |
parent | 495c51c74e7d1595c882ae31becb7ab5b4093a08 (diff) |
UserInfo_AddPage() helper replaced with CMPLugin::addUserInfo()
Diffstat (limited to 'plugins/UserInfoEx/src/classPsTree.cpp')
-rw-r--r-- | plugins/UserInfoEx/src/classPsTree.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/UserInfoEx/src/classPsTree.cpp b/plugins/UserInfoEx/src/classPsTree.cpp index e40b6f6bff..d1567bba69 100644 --- a/plugins/UserInfoEx/src/classPsTree.cpp +++ b/plugins/UserInfoEx/src/classPsTree.cpp @@ -132,7 +132,7 @@ int CPsTree::AddDummyItem(LPCSTR pszGroup) odp.flags = ODPF_UNICODE; odp.szTitle.w = mir_utf8decodeW(pszGroup); - INT_PTR rc = UserInfo_AddPage((WPARAM)&psh, &odp); + int rc = g_plugin.addUserInfo((WPARAM)&psh, &odp); mir_free(odp.szTitle.w); if (!rc) { _pItems = psh._pPages; |