mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[SHELL32]: Fix copypasta bug.
svn path=/trunk/; revision=72105
This commit is contained in:
parent
8491cda803
commit
d77a6b17da
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ HRESULT CDesktopBrowser::Initialize(IShellDesktopTray *ShellDesk)
|
|||
|
||||
/* Calculate the size and pos of the window */
|
||||
RECT rect;
|
||||
if (!GetSystemMetrics(SM_CXVIRTUALSCREEN) || GetSystemMetrics(SM_CYVIRTUALSCREEN))
|
||||
if (!GetSystemMetrics(SM_CXVIRTUALSCREEN) || !GetSystemMetrics(SM_CYVIRTUALSCREEN))
|
||||
{
|
||||
SetRect(&rect, 0, 0, GetSystemMetrics(SM_CXSCREEN), GetSystemMetrics(SM_CYSCREEN));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue