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
f02a0157
Commit
f02a0157
authored
Oct 21, 2007
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 22, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml/tests: Move the 'const' after REFIID as REFIID is a macro that already starts with 'const'.
parent
4e2eef2b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
dom.c
dlls/mshtml/tests/dom.c
+10
-10
No files found.
dlls/mshtml/tests/dom.c
View file @
f02a0157
...
...
@@ -58,33 +58,33 @@ typedef enum {
ET_OPTION
}
elem_type_t
;
static
const
REFIID
none_iids
[]
=
{
static
REFIID
const
none_iids
[]
=
{
&
IID_IUnknown
,
NULL
};
static
const
REFIID
html_iids
[]
=
{
static
REFIID
const
html_iids
[]
=
{
&
IID_IHTMLDOMNode
,
&
IID_IHTMLElement
,
&
IID_IHTMLElement2
,
NULL
};
static
const
REFIID
head_iids
[]
=
{
static
REFIID
const
head_iids
[]
=
{
&
IID_IHTMLDOMNode
,
&
IID_IHTMLElement
,
&
IID_IHTMLElement2
,
NULL
};
static
const
REFIID
title_iids
[]
=
{
static
REFIID
const
title_iids
[]
=
{
&
IID_IHTMLDOMNode
,
&
IID_IHTMLElement
,
&
IID_IHTMLElement2
,
NULL
};
static
const
REFIID
body_iids
[]
=
{
static
REFIID
const
body_iids
[]
=
{
&
IID_IHTMLDOMNode
,
&
IID_IHTMLElement
,
&
IID_IHTMLElement2
,
...
...
@@ -93,7 +93,7 @@ static const REFIID body_iids[] = {
NULL
};
static
const
REFIID
anchor_iids
[]
=
{
static
REFIID
const
anchor_iids
[]
=
{
&
IID_IHTMLDOMNode
,
&
IID_IHTMLElement
,
&
IID_IHTMLElement2
,
...
...
@@ -101,7 +101,7 @@ static const REFIID anchor_iids[] = {
NULL
};
static
const
REFIID
input_iids
[]
=
{
static
REFIID
const
input_iids
[]
=
{
&
IID_IHTMLDOMNode
,
&
IID_IHTMLElement
,
&
IID_IHTMLElement2
,
...
...
@@ -110,7 +110,7 @@ static const REFIID input_iids[] = {
NULL
};
static
const
REFIID
select_iids
[]
=
{
static
REFIID
const
select_iids
[]
=
{
&
IID_IHTMLDOMNode
,
&
IID_IHTMLElement
,
&
IID_IHTMLElement2
,
...
...
@@ -118,7 +118,7 @@ static const REFIID select_iids[] = {
NULL
};
static
const
REFIID
textarea_iids
[]
=
{
static
REFIID
const
textarea_iids
[]
=
{
&
IID_IHTMLDOMNode
,
&
IID_IHTMLElement
,
&
IID_IHTMLElement2
,
...
...
@@ -126,7 +126,7 @@ static const REFIID textarea_iids[] = {
NULL
};
static
const
REFIID
option_iids
[]
=
{
static
REFIID
const
option_iids
[]
=
{
&
IID_IHTMLDOMNode
,
&
IID_IHTMLElement
,
&
IID_IHTMLElement2
,
...
...
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