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
a7ec901e
Commit
a7ec901e
authored
Nov 16, 2023
by
Zhiyi Zhang
Committed by
Alexandre Julliard
Nov 16, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uiribbon: Fix IUIFramework::SetUICommandProperty() prototype.
The last parameter should be REFPROPVARIANT instead of PROPVARIANT.
parent
8f26aaf2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
uiribbon.c
dlls/uiribbon/uiribbon.c
+2
-2
uiribbon.idl
include/uiribbon.idl
+1
-1
No files found.
dlls/uiribbon/uiribbon.c
View file @
a7ec901e
...
...
@@ -111,9 +111,9 @@ static HRESULT WINAPI UIRibbonFrameworkImpl_GetUICommandProperty(IUIFramework *i
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
UIRibbonFrameworkImpl_SetUICommandProperty
(
IUIFramework
*
iface
,
UINT32
commandId
,
REFPROPERTYKEY
key
,
PROPVARIANT
value
)
static
HRESULT
WINAPI
UIRibbonFrameworkImpl_SetUICommandProperty
(
IUIFramework
*
iface
,
UINT32
commandId
,
REFPROPERTYKEY
key
,
REF
PROPVARIANT
value
)
{
FIXME
(
"(%u, %p
): stub!
\n
"
,
commandId
,
key
);
FIXME
(
"(%u, %p
, %p): stub!
\n
"
,
commandId
,
key
,
value
);
return
E_NOTIMPL
;
}
...
...
include/uiribbon.idl
View file @
a7ec901e
...
...
@@ -171,7 +171,7 @@ interface IUIFramework : IUnknown
HRESULT
SetUICommandProperty
(
[
in
]
UINT32
commandId
,
[
in
]
REFPROPERTYKEY
key
,
[
in
]
PROPVARIANT
value
[
in
]
REF
PROPVARIANT
value
)
;
HRESULT
InvalidateUICommand
(
[
in
]
UINT32
commandId
,
...
...
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