diff options
| author | George Hazan <ghazan@miranda.im> | 2019-12-04 16:08:03 +0300 | 
|---|---|---|
| committer | George Hazan <ghazan@miranda.im> | 2019-12-04 16:08:03 +0300 | 
| commit | 3bb16e798cb51d5764aacbefd4edf26f52d8c4f0 (patch) | |
| tree | 59dbb53fc9496d660ec2ef2846a4eab0f1720b88 /plugins/Popup/src | |
| parent | 3216d8df5cb355f34c82ed10b7e40bab7525b697 (diff) | |
GetContactProto: useless duplicate function replaced with standard Proto_GetBaseAccountName
Diffstat (limited to 'plugins/Popup/src')
| -rw-r--r-- | plugins/Popup/src/popup_wnd2.cpp | 6 | ||||
| -rw-r--r-- | plugins/Popup/src/services.cpp | 4 | 
2 files changed, 5 insertions, 5 deletions
diff --git a/plugins/Popup/src/popup_wnd2.cpp b/plugins/Popup/src/popup_wnd2.cpp index 9a6265ac6b..6659813d6d 100644 --- a/plugins/Popup/src/popup_wnd2.cpp +++ b/plugins/Popup/src/popup_wnd2.cpp @@ -497,7 +497,7 @@ void PopupWnd2::fixDefaults()  	m_hContactPassed = m_hContact;
  	if (m_hContact)
 -		if (!GetContactProto(m_hContact))
 +		if (!Proto_GetBaseAccountName(m_hContact))
  			m_hContact = NULL;
  	switch (m_textType) {
 @@ -524,7 +524,7 @@ void PopupWnd2::fixAvatar()  int PopupWnd2::fixActions(POPUPACTION *theActions, int count)
  {
 -	bool isIm = (m_hContact && (CallProtoService(GetContactProto(m_hContact), PS_GETCAPS, PFLAGNUM_1, 0) & PF1_IM)) ? true : false;
 +	bool isIm = (m_hContact && (CallProtoService(Proto_GetBaseAccountName(m_hContact), PS_GETCAPS, PFLAGNUM_1, 0) & PF1_IM)) ? true : false;
  	bool enableDefaultGen = (m_hContact || !(PopupOptions.actions & ACT_DEF_NOGLOBAL)) ? true : false;
  	bool enableDefaultUsr = (isIm || m_hContact && !(PopupOptions.actions & ACT_DEF_IMONLY)) ? true : false;
 @@ -795,7 +795,7 @@ void AddMessageToDB(MCONTACT hContact, char *msg)  	DBEVENTINFO dbei = {};
  	dbei.eventType = EVENTTYPE_MESSAGE;
  	dbei.flags = DBEF_SENT | DBEF_UTF;
 -	dbei.szModule = GetContactProto(hContact);
 +	dbei.szModule = Proto_GetBaseAccountName(hContact);
  	dbei.timestamp = time(0);
  	dbei.cbBlob = (int)mir_strlen(msg) + 1;
  	dbei.pBlob = (PBYTE)msg;
 diff --git a/plugins/Popup/src/services.cpp b/plugins/Popup/src/services.cpp index cafe1a5093..4692274bcf 100644 --- a/plugins/Popup/src/services.cpp +++ b/plugins/Popup/src/services.cpp @@ -121,7 +121,7 @@ INT_PTR Popup_AddPopup2(WPARAM wParam, LPARAM lParam)  	// Check if contact handle is valid.
  	char *proto = nullptr;
  	if (ppd->lchContact)
 -		proto = GetContactProto(ppd->lchContact);
 +		proto = Proto_GetBaseAccountName(ppd->lchContact);
  	BYTE bShowMode = proto ? db_get_b(ppd->lchContact, MODULENAME, "ShowMode", PU_SHOWMODE_AUTO) : PU_SHOWMODE_AUTO;
 @@ -143,7 +143,7 @@ INT_PTR Popup_AddPopup2(WPARAM wParam, LPARAM lParam)  		if (proto) {
  			char prefix[128];
 -			mir_snprintf(prefix, LPGEN("Protocol Status") "/%s", GetContactProto(ppd->lchContact));
 +			mir_snprintf(prefix, LPGEN("Protocol Status") "/%s", Proto_GetBaseAccountName(ppd->lchContact));
  			if (g_plugin.getDword(prefix, 0) & Proto_Status2Flag_My(Proto_GetStatus(proto)))
  				return -1;
  			if (((disableWhen >> 16) & 0xFFFF0000) & Proto_Status2Flag_My(Proto_GetStatus(proto)))
  | 
