diff options
author | Goraf <22941576+Goraf@users.noreply.github.com> | 2018-01-24 19:47:13 +0100 |
---|---|---|
committer | Goraf <22941576+Goraf@users.noreply.github.com> | 2018-01-26 20:02:26 +0100 |
commit | bf8ad124d03b4fd059318d9ba8889b11faaf5b53 (patch) | |
tree | 95766e1d78353dcfd43f75a54a85874048e62d84 /protocols/Gadu-Gadu/src/links.cpp | |
parent | fe83051082d1509bd653b718f119f884646d20e5 (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/links.cpp')
-rw-r--r-- | protocols/Gadu-Gadu/src/links.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Gadu-Gadu/src/links.cpp b/protocols/Gadu-Gadu/src/links.cpp index e8622cad4b..02e4986236 100644 --- a/protocols/Gadu-Gadu/src/links.cpp +++ b/protocols/Gadu-Gadu/src/links.cpp @@ -58,7 +58,7 @@ static INT_PTR gg_parselink(WPARAM, LPARAM lParam) if (!uin)
return 1;
- GGPROTO *gg = nullptr;
+ GaduProto *gg = nullptr;
int items = 0;
for (int i = 0; i < g_Instances.getCount(); i++) {
gg = g_Instances[i];
@@ -114,7 +114,7 @@ void gg_links_init() }
}
-void GGPROTO::links_instance_init()
+void GaduProto::links_instance_init()
{
if (ServiceExists(MS_ASSOCMGR_ADDNEWURLTYPE)) {
CMenuItem mi;
|