diff options
Diffstat (limited to 'plugins/Clist_modern/modern_awaymsg.cpp')
-rw-r--r-- | plugins/Clist_modern/modern_awaymsg.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Clist_modern/modern_awaymsg.cpp b/plugins/Clist_modern/modern_awaymsg.cpp index 387662caac..52d59881d3 100644 --- a/plugins/Clist_modern/modern_awaymsg.cpp +++ b/plugins/Clist_modern/modern_awaymsg.cpp @@ -75,7 +75,7 @@ static int amAddHandleToChain(HANDLE hContact) }
} while(wChain = (AMCHAINITEM *)wChain->Next);
}
- if (!amFirstChainItem)
+ if ( !amFirstChainItem)
{
amFirstChainItem = (AMCHAINITEM*)malloc(sizeof(AMCHAINITEM));
workChain = amFirstChainItem;
@@ -144,7 +144,7 @@ static int amThreadProc(HWND hwnd) Sync(CLUI_SyncGetPDNCE, (WPARAM) 0,(LPARAM)&dnce);
if (dnce.ApparentMode != ID_STATUS_OFFLINE) //don't ask if contact is always invisible (should be done with protocol)
ACK = (HANDLE)CallContactService(hContact,PSS_GETAWAYMSG,0,0);
- if (!ACK)
+ if ( !ACK)
{
ACKDATA ack;
ack.hContact = hContact;
@@ -205,7 +205,7 @@ BOOL amWakeThread() void amRequestAwayMsg(HANDLE hContact)
{
char *szProto;
- if (!g_CluiData.bInternalAwayMsgDiscovery || !hContact)
+ if ( !g_CluiData.bInternalAwayMsgDiscovery || !hContact)
return;
//Do not re-ask for chat rooms
szProto = (char *) CallService(MS_PROTO_GETCONTACTBASEPROTO, (WPARAM) hContact, 0);
|