From 8b3de7af5b6799b1c8ca41fe4633617a70c0894f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20P=C3=B6sel?= Date: Tue, 26 May 2015 08:33:42 +0000 Subject: Unify Netlib initialization error message in some protocols git-svn-id: http://svn.miranda-ng.org/main/trunk@13841 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Twitter/src/proto.cpp | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'protocols/Twitter/src') diff --git a/protocols/Twitter/src/proto.cpp b/protocols/Twitter/src/proto.cpp index 5ad228ab3e..b2992b22f4 100644 --- a/protocols/Twitter/src/proto.cpp +++ b/protocols/Twitter/src/proto.cpp @@ -324,8 +324,11 @@ int TwitterProto::OnModulesLoaded(WPARAM, LPARAM) mir_sntprintf(descr, SIZEOF(descr), TranslateT("%s server connection"), m_tszUserName); nlu.ptszDescriptiveName = descr; m_hNetlibUser = (HANDLE)CallService(MS_NETLIB_REGISTERUSER, 0, (LPARAM)&nlu); - if (m_hNetlibUser == 0) - MessageBox(0, TranslateT("Unable to get Netlib connection for Twitter"), TranslateT("Twitter"), 0); + if (m_hNetlibUser == NULL) { + TCHAR error[200]; + mir_sntprintf(error, SIZEOF(error), TranslateT("Unable to initialize Netlib for %s."), m_tszUserName); + MessageBox(NULL, error, _T("Miranda NG"), MB_OK | MB_ICONERROR); + } // Create avatar network connection (TODO: probably remove this) char module[512]; @@ -334,8 +337,11 @@ int TwitterProto::OnModulesLoaded(WPARAM, LPARAM) mir_sntprintf(descr, SIZEOF(descr), TranslateT("%s avatar connection"), m_tszUserName); nlu.ptszDescriptiveName = descr; hAvatarNetlib_ = (HANDLE)CallService(MS_NETLIB_REGISTERUSER, 0, (LPARAM)&nlu); - if (hAvatarNetlib_ == 0) - MessageBox(0, TranslateT("Unable to get avatar Netlib connection for Twitter"), TranslateT("Twitter"), 0); + if (hAvatarNetlib_ == NULL) { + TCHAR error[200]; + mir_sntprintf(error, SIZEOF(error), TranslateT("Unable to initialize Netlib for %s."), TranslateT("Twitter (avatars)")); + MessageBox(NULL, error, _T("Miranda NG"), MB_OK | MB_ICONERROR); + } twit_.set_handle(this, m_hNetlibUser); -- cgit v1.2.3