diff options
author | Goraf <22941576+Goraf@users.noreply.github.com> | 2018-01-20 16:25:13 +0100 |
---|---|---|
committer | Goraf <22941576+Goraf@users.noreply.github.com> | 2018-01-20 16:37:39 +0100 |
commit | 087173d06f4848f19d186b6902d399ce9b7225e1 (patch) | |
tree | 0cb2330486f445a2fa56c6da3a2d7ee983df6f52 /protocols/Gadu-Gadu/src/links.cpp | |
parent | de12828fb9051fba1db1e4573cff56ee83ab6b1f (diff) |
Gadu-Gadu: code cleaning
Diffstat (limited to 'protocols/Gadu-Gadu/src/links.cpp')
-rw-r--r-- | protocols/Gadu-Gadu/src/links.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/protocols/Gadu-Gadu/src/links.cpp b/protocols/Gadu-Gadu/src/links.cpp index 6caf12722e..e8622cad4b 100644 --- a/protocols/Gadu-Gadu/src/links.cpp +++ b/protocols/Gadu-Gadu/src/links.cpp @@ -33,6 +33,7 @@ static INT_PTR gg_menuchoose(WPARAM wParam, LPARAM lParam) {
if (lParam)
*(void**)lParam = (void*)wParam;
+
return 0;
}
@@ -66,7 +67,8 @@ static INT_PTR gg_parselink(WPARAM, LPARAM lParam) ++items;
Menu_ModifyItem(gg->hInstanceMenuItem, nullptr, Skin_LoadProtoIcon(gg->m_szModuleName, gg->m_iStatus));
}
- else Menu_ShowItem(gg->hInstanceMenuItem, false);
+ else
+ Menu_ShowItem(gg->hInstanceMenuItem, false);
}
if (items > 1) {
|