From bf8ad124d03b4fd059318d9ba8889b11faaf5b53 Mon Sep 17 00:00:00 2001 From: Goraf <22941576+Goraf@users.noreply.github.com> Date: Wed, 24 Jan 2018 19:47:13 +0100 Subject: Gadu-Gadu: partial move to UI classes * advanced options form refactored * move to options class * const correctness * code cleaning --- protocols/Gadu-Gadu/src/ownerinfo.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'protocols/Gadu-Gadu/src/ownerinfo.cpp') diff --git a/protocols/Gadu-Gadu/src/ownerinfo.cpp b/protocols/Gadu-Gadu/src/ownerinfo.cpp index 86928a99e5..e1ac214e77 100644 --- a/protocols/Gadu-Gadu/src/ownerinfo.cpp +++ b/protocols/Gadu-Gadu/src/ownerinfo.cpp @@ -29,7 +29,7 @@ struct GG_REMIND_PASS ////////////////////////////////////////////////////////// // remind password // -void __cdecl GGPROTO::remindpasswordthread(void *param) +void __cdecl GaduProto::remindpasswordthread(void *param) { // Connection handle GG_REMIND_PASS *rp = (GG_REMIND_PASS *)param; @@ -74,14 +74,14 @@ void __cdecl GGPROTO::remindpasswordthread(void *param) #endif } -void GGPROTO::remindpassword(uin_t uin, const char *email) +void GaduProto::remindpassword(uin_t uin, const char *email) { GG_REMIND_PASS *rp = (GG_REMIND_PASS*)malloc(sizeof(GG_REMIND_PASS)); rp->uin = uin; rp->email = email; #ifdef DEBUGMODE - debugLogA("remindpassword(): ForkThreadEx 20 GGPROTO::remindpasswordthread"); + debugLogA("remindpassword(): ForkThreadEx 20 GaduProto::remindpasswordthread"); #endif - ForkThread(&GGPROTO::remindpasswordthread, rp); + ForkThread(&GaduProto::remindpasswordthread, rp); } -- cgit v1.2.3