diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-06 05:56:11 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-06 05:56:11 +0000 |
commit | 488aa433f119560b13c1b6234508ea6dda29c25a (patch) | |
tree | 4167d0853872fc5563f9490848158809de6edd87 /plugins/UserInfoEx/svc_contactinfo.cpp | |
parent | 2d72bd7549e0ffb36a3d3391ca979b75a365f5de (diff) |
user-defined service creation isn't needed anymore
git-svn-id: http://svn.miranda-ng.org/main/trunk@781 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/UserInfoEx/svc_contactinfo.cpp')
-rw-r--r-- | plugins/UserInfoEx/svc_contactinfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/UserInfoEx/svc_contactinfo.cpp b/plugins/UserInfoEx/svc_contactinfo.cpp index 18aa2bcc6b..06053e8e7f 100644 --- a/plugins/UserInfoEx/svc_contactinfo.cpp +++ b/plugins/UserInfoEx/svc_contactinfo.cpp @@ -779,12 +779,12 @@ static INT OnSettingChanged(WPARAM wParam, LPARAM lParam) **/
VOID SvcContactInfoLoadModule()
{
- myCreateServiceFunction(MS_DB_CONTACT_GETSETTING_STR_EX, GetContactSettingStrExService);
+ CreateServiceFunction(MS_DB_CONTACT_GETSETTING_STR_EX, GetContactSettingStrExService);
if (DB::Setting::GetByte(SET_GETCONTACTINFO_ENABLED, DEFVAL_GETCONTACTINFO_ENABLED))
{
if (!myDestroyServiceFunction(MS_CONTACT_GETCONTACTINFO)) {
- if (myCreateServiceFunction(MS_CONTACT_GETCONTACTINFO, GetContactInfo)) {
+ if (CreateServiceFunction(MS_CONTACT_GETCONTACTINFO, GetContactInfo)) {
DBVARIANT dbv;
if (DB::Setting::GetAString(NULL, "Contact", "NameOrder", &dbv)) {
BYTE i;
|