From 62ab18a9fda2f19c08ae63a14c7a262ca62f0cce Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 8 Jul 2014 15:49:18 +0000 Subject: code cleaning git-svn-id: http://svn.miranda-ng.org/main/trunk@9732 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/SecureIM/src/dbevent.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'plugins/SecureIM/src/dbevent.cpp') diff --git a/plugins/SecureIM/src/dbevent.cpp b/plugins/SecureIM/src/dbevent.cpp index 5e38811d98..ae51a29c6a 100644 --- a/plugins/SecureIM/src/dbevent.cpp +++ b/plugins/SecureIM/src/dbevent.cpp @@ -1,17 +1,13 @@ #include "commonheaders.h" - void HistoryLog(MCONTACT hContact, LPCSTR szText) { DBEVENTINFO dbei = { sizeof(dbei) }; dbei.szModule = GetContactProto(hContact); - dbei.flags = DBEF_SENT|DBEF_READ; + dbei.flags = DBEF_SENT | DBEF_READ; dbei.timestamp = time(NULL); dbei.eventType = EVENTTYPE_MESSAGE; dbei.cbBlob = (int)strlen(szText) + 1; dbei.pBlob = (PBYTE)szText; db_event_add(0, &dbei); } - - -// EOF -- cgit v1.2.3