From e2e9b8aefc3bccd3a4cc8481ed599317ea81dbbc Mon Sep 17 00:00:00 2001 From: Stanislav Ershov Date: Fri, 19 Oct 2018 01:51:55 +0300 Subject: [PATCH] Fix compilation errors in conformance mode --- .../SourceFiles/platform/win/main_window_win.cpp | 2 +- .../platform/win/notifications_manager_win.cpp | 6 +++--- .../SourceFiles/platform/win/specific_win.cpp | 15 +++++++-------- Telegram/SourceFiles/ui/text/text.cpp | 2 +- 4 files changed, 12 insertions(+), 13 deletions(-) diff --git a/Telegram/SourceFiles/platform/win/main_window_win.cpp b/Telegram/SourceFiles/platform/win/main_window_win.cpp index 06832e04f..c46913e61 100644 --- a/Telegram/SourceFiles/platform/win/main_window_win.cpp +++ b/Telegram/SourceFiles/platform/win/main_window_win.cpp @@ -538,7 +538,7 @@ private: BYTE r = 0, g = 0, b = 0; COLORREF noKeyColor; - static LRESULT CALLBACK _PsShadowWindows::wndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam); + static LRESULT CALLBACK wndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam); }; _PsShadowWindows _psShadowWindows; diff --git a/Telegram/SourceFiles/platform/win/notifications_manager_win.cpp b/Telegram/SourceFiles/platform/win/notifications_manager_win.cpp index 22ab2fb05..2652fd658 100644 --- a/Telegram/SourceFiles/platform/win/notifications_manager_win.cpp +++ b/Telegram/SourceFiles/platform/win/notifications_manager_win.cpp @@ -213,7 +213,7 @@ class ToastEventHandler : public Implements { public: // We keep a weak pointer to a member field of native notifications manager. - ToastEventHandler::ToastEventHandler(const std::shared_ptr &guarded, const PeerId &peer, MsgId msg) + ToastEventHandler(const std::shared_ptr &guarded, const PeerId &peer, MsgId msg) : _peerId(peer) , _msgId(msg) , _weak(guarded) {} @@ -608,8 +608,8 @@ void queryQuietHours() { return; } - LPTSTR lpKeyName = L"Software\\Microsoft\\Windows\\CurrentVersion\\Notifications\\Settings"; - LPTSTR lpValueName = L"NOC_GLOBAL_SETTING_TOASTS_ENABLED"; + LPCWSTR lpKeyName = L"Software\\Microsoft\\Windows\\CurrentVersion\\Notifications\\Settings"; + LPCWSTR lpValueName = L"NOC_GLOBAL_SETTING_TOASTS_ENABLED"; HKEY key; auto result = RegOpenKeyEx(HKEY_CURRENT_USER, lpKeyName, 0, KEY_READ, &key); if (result != ERROR_SUCCESS) { diff --git a/Telegram/SourceFiles/platform/win/specific_win.cpp b/Telegram/SourceFiles/platform/win/specific_win.cpp index 8cf3ab7fb..b5f2d5409 100644 --- a/Telegram/SourceFiles/platform/win/specific_win.cpp +++ b/Telegram/SourceFiles/platform/win/specific_win.cpp @@ -510,15 +510,14 @@ QString SystemLanguage() { namespace { void _psLogError(const char *str, LSTATUS code) { - LPTSTR errorText = NULL, errorTextDefault = L"(Unknown error)"; - FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, - code, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPTSTR)&errorText, 0, 0); - if (!errorText) { - errorText = errorTextDefault; - } - LOG((str).arg(code).arg(QString::fromStdWString(errorText))); - if (errorText != errorTextDefault) { + LPWSTR errorText = NULL; + + if (FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, + code, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPTSTR)&errorText, 0, 0) > 0) { + LOG((str).arg(code).arg(QString::fromStdWString(errorText))); LocalFree(errorText); + } else { + LOG((str).arg(code).arg("(Unknown error)")); } } diff --git a/Telegram/SourceFiles/ui/text/text.cpp b/Telegram/SourceFiles/ui/text/text.cpp index 7f458cf58..bb367d144 100644 --- a/Telegram/SourceFiles/ui/text/text.cpp +++ b/Telegram/SourceFiles/ui/text/text.cpp @@ -663,7 +663,7 @@ private: }; void computeLinkText(const QString &linkData, QString *outLinkText, LinkDisplayStatus *outDisplayStatus) { - QUrl url(linkData), good(url.isValid() ? url.toEncoded() : ""); + QUrl url(linkData), good(url.isValid() ? url.toEncoded() : QString()); QString readable = good.isValid() ? good.toDisplayString() : linkData; *outLinkText = _t->_st->font->elided(readable, st::linkCropLimit); *outDisplayStatus = (*outLinkText == readable) ? LinkDisplayedFull : LinkDisplayedElided;