mirror of
https://github.com/vim/vim.git
synced 2025-09-30 04:44:14 -04:00
updated for version 7.0002
This commit is contained in:
@@ -818,9 +818,11 @@ FindWindowTitle(HWND hwnd, LPARAM lParam)
|
||||
{
|
||||
if (strstr(buf, title) != NULL)
|
||||
{
|
||||
/* Found it. Store the window ref. and quit searching. */
|
||||
/* Found it. Store the window ref. and quit searching if MDI
|
||||
* works. */
|
||||
vim_parent_hwnd = FindWindowEx(hwnd, NULL, "MDIClient", NULL);
|
||||
return FALSE;
|
||||
if (vim_parent_hwnd != NULL)
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
return TRUE; /* continue searching */
|
||||
|
Reference in New Issue
Block a user