summaryrefslogtreecommitdiff
path: root/protocols/Gadu-Gadu/image.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-07-23 08:36:06 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-07-23 08:36:06 +0000
commit704a24032eb7067ea526b37d03d8fe935331beea (patch)
tree62f4263f624a66ff4957aad148f324f7a40d6e6f /protocols/Gadu-Gadu/image.cpp
parentd828acae837c71992f6a5f9dd688ba7afd944e56 (diff)
fixed problems with services
git-svn-id: http://svn.miranda-ng.org/main/trunk@1109 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Gadu-Gadu/image.cpp')
-rw-r--r--protocols/Gadu-Gadu/image.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Gadu-Gadu/image.cpp b/protocols/Gadu-Gadu/image.cpp
index 342c2549de..0ad225ad06 100644
--- a/protocols/Gadu-Gadu/image.cpp
+++ b/protocols/Gadu-Gadu/image.cpp
@@ -76,7 +76,7 @@ int GGPROTO::img_init()
// Send image contact menu item
mir_snprintf(service, sizeof(service), GGS_SENDIMAGE, m_szModuleName);
- createProtoService(service, &GGPROTO::img_sendimg);
+ createObjService(service, &GGPROTO::img_sendimg);
mi.position = -2000010000;
mi.icolibItem = GetIconHandle(IDI_IMAGE);
mi.pszName = LPGEN("&Image");
@@ -86,7 +86,7 @@ int GGPROTO::img_init()
// Receive image
mir_snprintf(service, sizeof(service), GGS_RECVIMAGE, m_szModuleName);
- createProtoService(service, &GGPROTO::img_recvimage);
+ createObjService(service, &GGPROTO::img_recvimage);
return FALSE;
}