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
fa8f79fe
Commit
fa8f79fe
authored
Jul 27, 2010
by
Paul Vriens
Committed by
Alexandre Julliard
Jul 28, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Ignore a property.
parent
a6b59591
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
domdoc.c
dlls/msxml3/domdoc.c
+7
-0
No files found.
dlls/msxml3/domdoc.c
View file @
fa8f79fe
...
...
@@ -59,6 +59,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(msxml);
#define XML_SAVE_AS_HTML 64
static
const
WCHAR
SZ_PROPERTY_SELECTION_LANGUAGE
[]
=
{
'S'
,
'e'
,
'l'
,
'e'
,
'c'
,
't'
,
'i'
,
'o'
,
'n'
,
'L'
,
'a'
,
'n'
,
'g'
,
'u'
,
'a'
,
'g'
,
'e'
,
0
};
static
const
WCHAR
SZ_PROPERTY_PROHIBIT_DTD
[]
=
{
'P'
,
'r'
,
'o'
,
'h'
,
'i'
,
'b'
,
'i'
,
't'
,
'D'
,
'T'
,
'D'
,
0
};
static
const
WCHAR
SZ_VALUE_XPATH
[]
=
{
'X'
,
'P'
,
'a'
,
't'
,
'h'
,
0
};
static
const
WCHAR
SZ_VALUE_XSLPATTERN
[]
=
{
'X'
,
'S'
,
'L'
,
'P'
,
'a'
,
't'
,
't'
,
'e'
,
'r'
,
'n'
,
0
};
...
...
@@ -2075,6 +2076,12 @@ static HRESULT WINAPI domdoc_setProperty(
VariantClear
(
&
varStr
);
return
hr
;
}
else
if
(
lstrcmpiW
(
p
,
SZ_PROPERTY_PROHIBIT_DTD
)
==
0
)
{
/* Ignore */
FIXME
(
"Ignoring property ProhibitDTD, value %d
\n
"
,
V_BOOL
(
&
var
));
return
S_OK
;
}
FIXME
(
"Unknown property %s
\n
"
,
wine_dbgstr_w
(
p
));
return
E_FAIL
;
...
...
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