Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
2a3ece86
Commit
2a3ece86
authored
Jul 07, 2005
by
Martin Fuchs
Committed by
Alexandre Julliard
Jul 07, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- move ID_ABOUT_WINE into #ifdef __WINE__
- support for refresh in shell namespace windows
parent
adaef111
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
winefile.c
programs/winefile/winefile.c
+10
-2
No files found.
programs/winefile/winefile.c
View file @
2a3ece86
...
...
@@ -2386,11 +2386,11 @@ static LRESULT CALLBACK FrameWndProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM
case
ID_NO_WARRANTY
:
WineWarranty
(
Globals
.
hMainWnd
);
break
;
#endif
case
ID_ABOUT_WINE
:
ShellAbout
(
hwnd
,
RS
(
b2
,
IDS_WINE
),
RS
(
b1
,
IDS_WINEFILE
),
0
);
break
;
#endif
case
ID_ABOUT
:
ShellAbout
(
hwnd
,
RS
(
b1
,
IDS_WINEFILE
),
NULL
,
0
);
...
...
@@ -3729,7 +3729,15 @@ static void refresh_child(ChildWnd* child)
scan_entry
(
child
,
&
child
->
root
.
entry
,
0
,
child
->
hwnd
);
entry
=
read_tree
(
&
child
->
root
,
path
,
NULL
,
drv
,
child
->
sortOrder
,
child
->
hwnd
);
#ifdef _SHELL_FOLDERS
if
(
child
->
root
.
entry
.
etype
==
ET_SHELL
)
entry
=
read_tree
(
&
child
->
root
,
NULL
,
get_path_pidl
(
path
,
child
->
hwnd
),
drv
,
child
->
sortOrder
,
child
->
hwnd
);
else
#endif
entry
=
read_tree
(
&
child
->
root
,
path
,
NULL
,
drv
,
child
->
sortOrder
,
child
->
hwnd
);
if
(
!
entry
)
entry
=
&
child
->
root
.
entry
;
insert_entries
(
&
child
->
left
,
child
->
root
.
entry
.
down
,
NULL
,
TF_ALL
,
0
);
...
...
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