forked from github_mirror/framelesshelper
win32: remove useless error checking
Signed-off-by: Yuhang Zhao <2546789017@qq.com>
This commit is contained in:
parent
e162345c62
commit
8f31e67dae
|
@ -558,14 +558,6 @@ void Utils::showSystemMenu(const WId windowId, const QPoint &pos, const bool sel
|
||||||
SetMenuDefaultItem(hMenu, SC_CLOSE, FALSE);
|
SetMenuDefaultItem(hMenu, SC_CLOSE, FALSE);
|
||||||
const int result = TrackPopupMenu(hMenu, (TPM_RETURNCMD | (QGuiApplication::isRightToLeft()
|
const int result = TrackPopupMenu(hMenu, (TPM_RETURNCMD | (QGuiApplication::isRightToLeft()
|
||||||
? TPM_RIGHTALIGN : TPM_LEFTALIGN)), pos.x(), pos.y(), 0, hWnd, nullptr);
|
? TPM_RIGHTALIGN : TPM_LEFTALIGN)), pos.x(), pos.y(), 0, hWnd, nullptr);
|
||||||
// TrackPopupMenu returns 0: the user cancelled the menu, or some error occurred.
|
|
||||||
if (result == 0) {
|
|
||||||
const DWORD dwError = GetLastError();
|
|
||||||
if (dwError != ERROR_SUCCESS) {
|
|
||||||
qWarning() << __getSystemErrorMessage(kTrackPopupMenu, dwError);
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (PostMessageW(hWnd, WM_SYSCOMMAND, result, 0) == FALSE) {
|
if (PostMessageW(hWnd, WM_SYSCOMMAND, result, 0) == FALSE) {
|
||||||
qWarning() << getSystemErrorMessage(kPostMessageW);
|
qWarning() << getSystemErrorMessage(kPostMessageW);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue