diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-29 14:19:12 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-29 14:19:12 +0000 |
commit | c1840425166576b1cf187076a9344a78a20375b6 (patch) | |
tree | 7c7e1d66219c7b2ed6b57a397ac67b3541aa127e /plugins/TabSRMM/chat/main.cpp | |
parent | d80ee102fba0f99ad2ab0e0e734267f76b3b639e (diff) |
minor code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@686 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM/chat/main.cpp')
-rw-r--r-- | plugins/TabSRMM/chat/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/TabSRMM/chat/main.cpp b/plugins/TabSRMM/chat/main.cpp index b4d40e20ef..bf57bd0bb0 100644 --- a/plugins/TabSRMM/chat/main.cpp +++ b/plugins/TabSRMM/chat/main.cpp @@ -56,12 +56,12 @@ char *pszActiveWndModule = 0; int Chat_Load()
{
- if(M->GetByte("forceDisableMUC", 0)) {
+ if (M->GetByte("forceDisableMUC", 0)) {
PluginConfig.m_chat_enabled = false;
- return(0);
+ return 0;
}
g_hMenu = LoadMenu(g_hInst, MAKEINTRESOURCE(IDR_MENU));
- if(CreateServiceFunctions()) {
+ if (CreateServiceFunctions()) {
HookEvents();
CreateHookableEvents();
OptionsInit();
|