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
be6e022f
Commit
be6e022f
authored
May 04, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 05, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Forward SetRedraw to IFolderView2.
parent
7e0e82bc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
9 deletions
+7
-9
shlview.c
dlls/shell32/shlview.c
+7
-9
No files found.
dlls/shell32/shlview.c
View file @
be6e022f
...
...
@@ -625,7 +625,7 @@ static INT CALLBACK fill_list( LPVOID ptr, LPVOID arg )
static
HRESULT
ShellView_FillList
(
IShellViewImpl
*
This
)
{
I
ShellFolderView
*
folderview
=
&
This
->
IShellFolderView
_iface
;
I
FolderView2
*
folderview
=
&
This
->
IFolderView2
_iface
;
LPENUMIDLIST
pEnumIDList
;
LPITEMIDLIST
pidl
;
DWORD
fetched
;
...
...
@@ -658,9 +658,9 @@ static HRESULT ShellView_FillList(IShellViewImpl *This)
/* sort the array */
DPA_Sort
(
hdpa
,
ShellView_CompareItems
,
(
LPARAM
)
This
->
pSFParent
);
I
ShellFolderView
_SetRedraw
(
folderview
,
FALSE
);
I
FolderView2
_SetRedraw
(
folderview
,
FALSE
);
DPA_DestroyCallback
(
hdpa
,
fill_list
,
This
);
I
ShellFolderView
_SetRedraw
(
folderview
,
TRUE
);
I
FolderView2
_SetRedraw
(
folderview
,
TRUE
);
IEnumIDList_Release
(
pEnumIDList
);
...
...
@@ -3038,8 +3038,9 @@ static HRESULT WINAPI FolderView2_GetGroupSubsetCount(IFolderView2 *iface, UINT
static
HRESULT
WINAPI
FolderView2_SetRedraw
(
IFolderView2
*
iface
,
BOOL
redraw
)
{
IShellViewImpl
*
This
=
impl_from_IFolderView2
(
iface
);
FIXME
(
"(%p)->(%d), stub
\n
"
,
This
,
redraw
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%d)
\n
"
,
This
,
redraw
);
SendMessageW
(
This
->
hWndList
,
WM_SETREDRAW
,
redraw
,
0
);
return
S_OK
;
}
static
HRESULT
WINAPI
FolderView2_IsMoveInSameFolder
(
IFolderView2
*
iface
)
...
...
@@ -3245,10 +3246,7 @@ static HRESULT WINAPI IShellFolderView_fnSetRedraw(
{
IShellViewImpl
*
This
=
impl_from_IShellFolderView
(
iface
);
TRACE
(
"(%p)->(%d)
\n
"
,
This
,
redraw
);
SendMessageW
(
This
->
hWndList
,
WM_SETREDRAW
,
redraw
,
0
);
return
S_OK
;
return
IFolderView2_SetRedraw
(
&
This
->
IFolderView2_iface
,
redraw
);
}
static
HRESULT
WINAPI
IShellFolderView_fnGetSelectedCount
(
...
...
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