Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
5d707bc2
Commit
5d707bc2
authored
Apr 16, 2008
by
Andrew Talbot
Committed by
Alexandre Julliard
Apr 17, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32: Remove unused variable.
parent
0926fff5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
filedlg31.c
dlls/comdlg32/filedlg31.c
+5
-5
No files found.
dlls/comdlg32/filedlg31.c
View file @
5d707bc2
...
...
@@ -143,10 +143,10 @@ static LPCWSTR FD31_GetFileType(LPCWSTR cfptr, LPCWSTR fptr, const WORD index)
*/
static
BOOL
FD31_ScanDir
(
const
OPENFILENAMEW
*
ofn
,
HWND
hWnd
,
LPCWSTR
newPath
)
{
WCHAR
buffer
[
BUFFILE
];
HWND
hdlg
,
hdlgDir
;
LRESULT
lRet
=
TRUE
;
HCURSOR
hCursorWait
,
oldCursor
;
WCHAR
buffer
[
BUFFILE
];
HWND
hdlg
;
LRESULT
lRet
=
TRUE
;
HCURSOR
hCursorWait
,
oldCursor
;
TRACE
(
"Trying to change to %s
\n
"
,
debugstr_w
(
newPath
));
if
(
newPath
[
0
]
&&
!
SetCurrentDirectoryW
(
newPath
))
...
...
@@ -180,7 +180,7 @@ static BOOL FD31_ScanDir(const OPENFILENAMEW *ofn, HWND hWnd, LPCWSTR newPath)
/* list of directories */
strcpyW
(
buffer
,
FILE_star
);
if
(
(
hdlgDir
=
GetDlgItem
(
hWnd
,
lst2
)
)
!=
0
)
{
if
(
GetDlgItem
(
hWnd
,
lst2
)
!=
0
)
{
lRet
=
DlgDirListW
(
hWnd
,
buffer
,
lst2
,
stc1
,
DDL_EXCLUSIVE
|
DDL_DIRECTORY
);
}
SetCursor
(
oldCursor
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment