summaryrefslogtreecommitdiff
path: root/protocols/Gadu-Gadu/src/ownerinfo.cpp
diff options
context:
space:
mode:
authorGoraf <22941576+Goraf@users.noreply.github.com>2018-01-24 19:47:13 +0100
committerGoraf <22941576+Goraf@users.noreply.github.com>2018-01-26 20:02:26 +0100
commitbf8ad124d03b4fd059318d9ba8889b11faaf5b53 (patch)
tree95766e1d78353dcfd43f75a54a85874048e62d84 /protocols/Gadu-Gadu/src/ownerinfo.cpp
parentfe83051082d1509bd653b718f119f884646d20e5 (diff)
Gadu-Gadu: partial move to UI classes
* advanced options form refactored * move to options class * const correctness * code cleaning
Diffstat (limited to 'protocols/Gadu-Gadu/src/ownerinfo.cpp')
-rw-r--r--protocols/Gadu-Gadu/src/ownerinfo.cpp8
1 files changed, 4 insertions, 4 deletions
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);
}