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
a72fbdd0
Commit
a72fbdd0
authored
Sep 17, 2008
by
Mikołaj Zalewski
Committed by
Alexandre Julliard
Sep 18, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: autocomplete: Remove some obsolete FIXMEs, update some comments.
parent
d9190052
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
autocomplete.c
dlls/shell32/autocomplete.c
+2
-3
No files found.
dlls/shell32/autocomplete.c
View file @
a72fbdd0
...
...
@@ -31,6 +31,8 @@
- implement ACO_FILTERPREFIXES style
- implement ACO_USETAB style
- implement ACO_RTLREADING style
- implement ResetEnumerator
- string compares should be case-insensitive, the content of the list should be sorted
*/
#include "config.h"
...
...
@@ -253,12 +255,9 @@ static HRESULT WINAPI IAutoComplete2_fnInit(
TRACE
(
"(%p)->(0x%08lx, %p, %s, %s)
\n
"
,
This
,
(
long
)
hwndEdit
,
punkACL
,
debugstr_w
(
pwzsRegKeyPath
),
debugstr_w
(
pwszQuickComplete
));
if
(
This
->
options
&
ACO_AUTOSUGGEST
)
TRACE
(
" ACO_AUTOSUGGEST
\n
"
);
if
(
This
->
options
&
ACO_AUTOAPPEND
)
TRACE
(
" ACO_AUTOAPPEND
\n
"
);
if
(
This
->
options
&
ACO_SEARCH
)
FIXME
(
" ACO_SEARCH not supported
\n
"
);
if
(
This
->
options
&
ACO_FILTERPREFIXES
)
FIXME
(
" ACO_FILTERPREFIXES not supported
\n
"
);
if
(
This
->
options
&
ACO_USETAB
)
FIXME
(
" ACO_USETAB not supported
\n
"
);
if
(
This
->
options
&
ACO_UPDOWNKEYDROPSLIST
)
TRACE
(
" ACO_UPDOWNKEYDROPSLIST
\n
"
);
if
(
This
->
options
&
ACO_RTLREADING
)
FIXME
(
" ACO_RTLREADING not supported
\n
"
);
This
->
hwndEdit
=
hwndEdit
;
...
...
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