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
21214ed3
Commit
21214ed3
authored
Sep 19, 2007
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 19, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added Exec(IDM_FONT) stub implementation.
parent
48d6c1f5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
editor.c
dlls/mshtml/editor.c
+8
-0
No files found.
dlls/mshtml/editor.c
View file @
21214ed3
...
...
@@ -780,6 +780,13 @@ static HRESULT exec_fontsize(HTMLDocument *This, DWORD cmdexecopt, VARIANT *in,
return
S_OK
;
}
static
HRESULT
exec_font
(
HTMLDocument
*
This
,
DWORD
cmdexecopt
,
VARIANT
*
in
,
VARIANT
*
out
)
{
FIXME
(
"(%p)->(%p %p)
\n
"
,
This
,
in
,
out
);
return
E_NOTIMPL
;
}
static
HRESULT
exec_selectall
(
HTMLDocument
*
This
,
DWORD
cmdexecopt
,
VARIANT
*
in
,
VARIANT
*
out
)
{
TRACE
(
"(%p)
\n
"
,
This
);
...
...
@@ -1359,6 +1366,7 @@ const cmdtable_t editmode_cmds[] = {
{
IDM_JUSTIFYCENTER
,
query_justify
,
exec_justifycenter
},
{
IDM_JUSTIFYRIGHT
,
query_justify
,
exec_justifyright
},
{
IDM_JUSTIFYLEFT
,
query_justify
,
exec_justifyleft
},
{
IDM_FONT
,
NULL
,
exec_font
},
{
IDM_UNDERLINE
,
query_edit_status
,
exec_underline
},
{
IDM_HORIZONTALLINE
,
query_edit_status
,
exec_horizontalline
},
{
IDM_ORDERLIST
,
query_edit_status
,
exec_orderlist
},
...
...
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