From 99962115431435cf17dfae4d3b7c8d7d55d824bf Mon Sep 17 00:00:00 2001 From: George Hazan Date: Fri, 8 Mar 2019 15:29:44 +0300 Subject: life is too short to remember whether this structure is zeroed or not --- plugins/TabSRMM/src/chat_tools.cpp | 2 +- plugins/TabSRMM/src/eventpopups.cpp | 2 +- plugins/TabSRMM/src/msgs.cpp | 2 +- plugins/TabSRMM/src/sendlater.cpp | 2 +- plugins/TabSRMM/src/typingnotify.cpp | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) (limited to 'plugins/TabSRMM/src') diff --git a/plugins/TabSRMM/src/chat_tools.cpp b/plugins/TabSRMM/src/chat_tools.cpp index 4066df9733..ca0c7955d4 100644 --- a/plugins/TabSRMM/src/chat_tools.cpp +++ b/plugins/TabSRMM/src/chat_tools.cpp @@ -86,7 +86,7 @@ BOOL DoTrayIcon(SESSION_INFO *si, GCEVENT *gce) int ShowPopup(MCONTACT hContact, SESSION_INFO *si, HICON hIcon, char* pszProtoName, wchar_t*, COLORREF crBkg, const wchar_t* fmt, ...) { - POPUPDATAW pd = { 0 }; + POPUPDATAW pd; va_list marker; static wchar_t szBuf[4 * 1024]; diff --git a/plugins/TabSRMM/src/eventpopups.cpp b/plugins/TabSRMM/src/eventpopups.cpp index 3f113e3632..0f0890098c 100644 --- a/plugins/TabSRMM/src/eventpopups.cpp +++ b/plugins/TabSRMM/src/eventpopups.cpp @@ -390,7 +390,7 @@ static int PopupShowT(NEN_OPTIONS *pluginOptions, MCONTACT hContact, MEVENT hEve if (hEvent == 0 && hContact == 0) dbe.szModule = Translate("Unknown module or contact"); - POPUPDATAW pud = { 0 }; + POPUPDATAW pud; long iSeconds; switch (eventType) { case EVENTTYPE_MESSAGE: diff --git a/plugins/TabSRMM/src/msgs.cpp b/plugins/TabSRMM/src/msgs.cpp index 99724be8b3..757f7ba8ca 100644 --- a/plugins/TabSRMM/src/msgs.cpp +++ b/plugins/TabSRMM/src/msgs.cpp @@ -251,7 +251,7 @@ void CTabBaseDlg::NotifyDeliveryFailure() const if (!Popup_Enabled()) return; - POPUPDATAW ppd = { 0 }; + POPUPDATAW ppd; ppd.lchContact = m_hContact; wcsncpy_s(ppd.lpwzContactName, m_cache->getNick(), _TRUNCATE); wcsncpy_s(ppd.lpwzText, TranslateT("A message delivery has failed.\nClick to open the message window."), _TRUNCATE); diff --git a/plugins/TabSRMM/src/sendlater.cpp b/plugins/TabSRMM/src/sendlater.cpp index cad78c179c..06ce68d9db 100644 --- a/plugins/TabSRMM/src/sendlater.cpp +++ b/plugins/TabSRMM/src/sendlater.cpp @@ -118,7 +118,7 @@ CSendLaterJob::~CSendLaterJob() if (fShowPopup) { wchar_t *tszName = Clist_GetContactDisplayName(hContact); - POPUPDATAW ppd = { 0 }; + POPUPDATAW ppd; ppd.lchContact = hContact; wcsncpy_s(ppd.lpwzContactName, (tszName ? tszName : TranslateT("'(Unknown contact)'")), _TRUNCATE); wchar_t *msgPreview = Utils::GetPreviewWithEllipsis(reinterpret_cast(&pBuf[mir_strlen((char *)pBuf) + 1]), 100); diff --git a/plugins/TabSRMM/src/typingnotify.cpp b/plugins/TabSRMM/src/typingnotify.cpp index 55101e431b..f9a92d12fb 100644 --- a/plugins/TabSRMM/src/typingnotify.cpp +++ b/plugins/TabSRMM/src/typingnotify.cpp @@ -98,7 +98,7 @@ void TN_TypingMessage(MCONTACT hContact, int iMode) } int notyping; - POPUPDATAW ppd = { 0 }; + POPUPDATAW ppd; if (iMode == PROTOTYPE_CONTACTTYPING_OFF) { if (StopDisabled) @@ -286,7 +286,7 @@ static INT_PTR CALLBACK DlgProcOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARA case IDC_PREVIEW: for (int i = 0; i < 2; i++) { - POPUPDATAW ppd = {}; + POPUPDATAW ppd; int notyping; if (i == PROTOTYPE_CONTACTTYPING_OFF) { wcsncpy_s(ppd.lpwzContactName, TranslateT("Contact"), _TRUNCATE); -- cgit v1.2.3