diff options
| author | George Hazan <george.hazan@gmail.com> | 2016-09-06 18:26:47 +0000 | 
|---|---|---|
| committer | George Hazan <george.hazan@gmail.com> | 2016-09-06 18:26:47 +0000 | 
| commit | a27b07c35565ced7f690890dcba29518ae2e4928 (patch) | |
| tree | d599c43d8448816a5fcc5f09838dd817b59f3b3f /protocols/IRCG/src | |
| parent | a609a99eebd89fca7955c8957fc0f2e99c8ededb (diff) | |
MS_CLIST_SYSTRAY_NOTIFY - more useless code removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@17268 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/IRCG/src')
| -rw-r--r-- | protocols/IRCG/src/commandmonitor.cpp | 11 | ||||
| -rw-r--r-- | protocols/IRCG/src/ircproto.cpp | 9 | 
2 files changed, 2 insertions, 18 deletions
| diff --git a/protocols/IRCG/src/commandmonitor.cpp b/protocols/IRCG/src/commandmonitor.cpp index cfd91e12b1..6b369de31f 100644 --- a/protocols/IRCG/src/commandmonitor.cpp +++ b/protocols/IRCG/src/commandmonitor.cpp @@ -1894,21 +1894,12 @@ bool CIrcProto::OnIrc_NOOFCHANNELS(const CIrcMessage* pmsg)  bool CIrcProto::OnIrc_ERROR(const CIrcMessage* pmsg)
  {
  	if (pmsg->m_bIncoming && !m_disableErrorPopups && m_iDesiredStatus != ID_STATUS_OFFLINE) {
 -		MIRANDASYSTRAYNOTIFY msn;
 -		msn.cbSize = sizeof(MIRANDASYSTRAYNOTIFY);
 -		msn.szProto = m_szModuleName;
 -		msn.tszInfoTitle = TranslateT("IRC error");
 -
  		CMStringW S;
  		if (pmsg->parameters.getCount() > 0)
  			S = DoColorCodes(pmsg->parameters[0].c_str(), TRUE, FALSE);
  		else
  			S = TranslateT("Unknown");
 -
 -		msn.tszInfo = (wchar_t*)S.c_str();
 -		msn.dwInfoFlags = NIIF_ERROR | NIIF_INTERN_UNICODE;
 -		msn.uTimeout = 15000;
 -		CallService(MS_CLIST_SYSTRAY_NOTIFY, 0, (LPARAM)&msn);
 +		Clist_TrayNotifyW(m_szModuleName, TranslateT("IRC error"), S, NIIF_ERROR, 15000);
  	}
  	ShowMessage(pmsg);
  	return true;
 diff --git a/protocols/IRCG/src/ircproto.cpp b/protocols/IRCG/src/ircproto.cpp index 222691d3d7..50ac719935 100644 --- a/protocols/IRCG/src/ircproto.cpp +++ b/protocols/IRCG/src/ircproto.cpp @@ -732,14 +732,7 @@ int CIrcProto::SetStatusInternal(int iNewStatus, bool bIsInternal)  	}
  	if (iNewStatus != ID_STATUS_OFFLINE && !m_nick[0] || !m_userID[0] || !m_name[0]) {
 -		MIRANDASYSTRAYNOTIFY msn;
 -		msn.cbSize = sizeof(MIRANDASYSTRAYNOTIFY);
 -		msn.szProto = m_szModuleName;
 -		msn.tszInfoTitle = TranslateT("IRC error");
 -		msn.tszInfo = TranslateT("Connection cannot be established! You have not completed all necessary fields (Nickname, User ID and m_name).");
 -		msn.dwInfoFlags = NIIF_ERROR | NIIF_INTERN_UNICODE;
 -		msn.uTimeout = 15000;
 -		CallService(MS_CLIST_SYSTRAY_NOTIFY, 0, (LPARAM)&msn);
 +		Clist_TrayNotifyW(m_szModuleName, TranslateT("IRC error"), TranslateT("Connection cannot be established! You have not completed all necessary fields (Nickname, User ID and m_name)."), NIIF_ERROR, 15000);
  		return 0;
  	}
 | 
