From 3bb16e798cb51d5764aacbefd4edf26f52d8c4f0 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Wed, 4 Dec 2019 16:08:03 +0300 Subject: GetContactProto: useless duplicate function replaced with standard Proto_GetBaseAccountName --- plugins/IEView/src/HTMLBuilder.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/IEView/src/HTMLBuilder.cpp') diff --git a/plugins/IEView/src/HTMLBuilder.cpp b/plugins/IEView/src/HTMLBuilder.cpp index 5ec5978cb1..e6feba005d 100644 --- a/plugins/IEView/src/HTMLBuilder.cpp +++ b/plugins/IEView/src/HTMLBuilder.cpp @@ -109,7 +109,7 @@ const char* HTMLBuilder::getRealProto(MCONTACT hContact) if (hContact == NULL) return nullptr; - return GetContactProto(getRealContact(hContact)); + return Proto_GetBaseAccountName(getRealContact(hContact)); } MCONTACT HTMLBuilder::getRealContact(MCONTACT hContact) @@ -192,7 +192,7 @@ void HTMLBuilder::appendEventOld(IEView *view, IEVIEWEVENT *event) MEVENT hDbEvent = event->hDbEventFirst; event->hDbEventFirst = NULL; - const char *szProto = GetContactProto(event->hContact); + const char *szProto = Proto_GetBaseAccountName(event->hContact); IEVIEWEVENT newEvent = {}; newEvent.iType = IEE_LOG_MEM_EVENTS; @@ -339,7 +339,7 @@ void HTMLBuilder::clear(IEView *view, IEVIEWEVENT *event) if (event != nullptr) { setLastIEViewEvent(event); - if (event->hContact == NULL || GetContactProto(lastIEViewEvent.hContact)) + if (event->hContact == NULL || Proto_GetBaseAccountName(lastIEViewEvent.hContact)) buildHead(view, &lastIEViewEvent); } } -- cgit v1.2.3