comdlg32: Indentation fix.

This commit is contained in:
Andrew Talbot 2012-12-10 22:43:40 +00:00 committed by Alexandre Julliard
parent b74b8776c0
commit 309654f058

View file

@ -201,11 +201,11 @@ static BOOL FD31_ScanDir(const OPENFILENAMEW *ofn, HWND hWnd, LPCWSTR newPath)
while (filter) {
scptr = strchrW(filter, ';');
if (scptr) *scptr = 0;
while (*filter == ' ') filter++;
while (*filter == ' ') filter++;
TRACE("Using file spec %s\n", debugstr_w(filter));
SendMessageW(hdlg, LB_DIR, 0, (LPARAM)filter);
if (scptr) *scptr = ';';
filter = (scptr) ? (scptr + 1) : 0;
filter = (scptr) ? (scptr + 1) : 0;
}
}