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
f51ceff7
Commit
f51ceff7
authored
Mar 28, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 28, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Improved VARIANT debug traces in htmltable.c.
parent
42bb6cab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
htmltable.c
dlls/mshtml/htmltable.c
+10
-10
No files found.
dlls/mshtml/htmltable.c
View file @
f51ceff7
...
@@ -128,7 +128,7 @@ static HRESULT WINAPI HTMLTable_get_cols(IHTMLTable *iface, LONG *p)
...
@@ -128,7 +128,7 @@ static HRESULT WINAPI HTMLTable_get_cols(IHTMLTable *iface, LONG *p)
static
HRESULT
WINAPI
HTMLTable_put_border
(
IHTMLTable
*
iface
,
VARIANT
v
)
static
HRESULT
WINAPI
HTMLTable_put_border
(
IHTMLTable
*
iface
,
VARIANT
v
)
{
{
HTMLTable
*
This
=
impl_from_IHTMLTable
(
iface
);
HTMLTable
*
This
=
impl_from_IHTMLTable
(
iface
);
FIXME
(
"(%p)->(
v)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
@@ -170,7 +170,7 @@ static HRESULT WINAPI HTMLTable_get_rules(IHTMLTable *iface, BSTR *p)
...
@@ -170,7 +170,7 @@ static HRESULT WINAPI HTMLTable_get_rules(IHTMLTable *iface, BSTR *p)
static
HRESULT
WINAPI
HTMLTable_put_cellSpacing
(
IHTMLTable
*
iface
,
VARIANT
v
)
static
HRESULT
WINAPI
HTMLTable_put_cellSpacing
(
IHTMLTable
*
iface
,
VARIANT
v
)
{
{
HTMLTable
*
This
=
impl_from_IHTMLTable
(
iface
);
HTMLTable
*
This
=
impl_from_IHTMLTable
(
iface
);
FIXME
(
"(%p)->(
v)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
@@ -184,7 +184,7 @@ static HRESULT WINAPI HTMLTable_get_cellSpacing(IHTMLTable *iface, VARIANT *p)
...
@@ -184,7 +184,7 @@ static HRESULT WINAPI HTMLTable_get_cellSpacing(IHTMLTable *iface, VARIANT *p)
static
HRESULT
WINAPI
HTMLTable_put_cellPadding
(
IHTMLTable
*
iface
,
VARIANT
v
)
static
HRESULT
WINAPI
HTMLTable_put_cellPadding
(
IHTMLTable
*
iface
,
VARIANT
v
)
{
{
HTMLTable
*
This
=
impl_from_IHTMLTable
(
iface
);
HTMLTable
*
This
=
impl_from_IHTMLTable
(
iface
);
FIXME
(
"(%p)->(
v)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
@@ -212,7 +212,7 @@ static HRESULT WINAPI HTMLTable_get_background(IHTMLTable *iface, BSTR *p)
...
@@ -212,7 +212,7 @@ static HRESULT WINAPI HTMLTable_get_background(IHTMLTable *iface, BSTR *p)
static
HRESULT
WINAPI
HTMLTable_put_bgColor
(
IHTMLTable
*
iface
,
VARIANT
v
)
static
HRESULT
WINAPI
HTMLTable_put_bgColor
(
IHTMLTable
*
iface
,
VARIANT
v
)
{
{
HTMLTable
*
This
=
impl_from_IHTMLTable
(
iface
);
HTMLTable
*
This
=
impl_from_IHTMLTable
(
iface
);
FIXME
(
"(%p)->(
v)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
@@ -226,7 +226,7 @@ static HRESULT WINAPI HTMLTable_get_bgColor(IHTMLTable *iface, VARIANT *p)
...
@@ -226,7 +226,7 @@ static HRESULT WINAPI HTMLTable_get_bgColor(IHTMLTable *iface, VARIANT *p)
static
HRESULT
WINAPI
HTMLTable_put_borderColor
(
IHTMLTable
*
iface
,
VARIANT
v
)
static
HRESULT
WINAPI
HTMLTable_put_borderColor
(
IHTMLTable
*
iface
,
VARIANT
v
)
{
{
HTMLTable
*
This
=
impl_from_IHTMLTable
(
iface
);
HTMLTable
*
This
=
impl_from_IHTMLTable
(
iface
);
FIXME
(
"(%p)->(
v)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
@@ -240,7 +240,7 @@ static HRESULT WINAPI HTMLTable_get_borderColor(IHTMLTable *iface, VARIANT *p)
...
@@ -240,7 +240,7 @@ static HRESULT WINAPI HTMLTable_get_borderColor(IHTMLTable *iface, VARIANT *p)
static
HRESULT
WINAPI
HTMLTable_put_borderColorLight
(
IHTMLTable
*
iface
,
VARIANT
v
)
static
HRESULT
WINAPI
HTMLTable_put_borderColorLight
(
IHTMLTable
*
iface
,
VARIANT
v
)
{
{
HTMLTable
*
This
=
impl_from_IHTMLTable
(
iface
);
HTMLTable
*
This
=
impl_from_IHTMLTable
(
iface
);
FIXME
(
"(%p)->(
v)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
@@ -254,7 +254,7 @@ static HRESULT WINAPI HTMLTable_get_borderColorLight(IHTMLTable *iface, VARIANT
...
@@ -254,7 +254,7 @@ static HRESULT WINAPI HTMLTable_get_borderColorLight(IHTMLTable *iface, VARIANT
static
HRESULT
WINAPI
HTMLTable_put_borderColorDark
(
IHTMLTable
*
iface
,
VARIANT
v
)
static
HRESULT
WINAPI
HTMLTable_put_borderColorDark
(
IHTMLTable
*
iface
,
VARIANT
v
)
{
{
HTMLTable
*
This
=
impl_from_IHTMLTable
(
iface
);
HTMLTable
*
This
=
impl_from_IHTMLTable
(
iface
);
FIXME
(
"(%p)->(
v)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
@@ -310,7 +310,7 @@ static HRESULT WINAPI HTMLTable_get_rows(IHTMLTable *iface, IHTMLElementCollecti
...
@@ -310,7 +310,7 @@ static HRESULT WINAPI HTMLTable_get_rows(IHTMLTable *iface, IHTMLElementCollecti
static
HRESULT
WINAPI
HTMLTable_put_width
(
IHTMLTable
*
iface
,
VARIANT
v
)
static
HRESULT
WINAPI
HTMLTable_put_width
(
IHTMLTable
*
iface
,
VARIANT
v
)
{
{
HTMLTable
*
This
=
impl_from_IHTMLTable
(
iface
);
HTMLTable
*
This
=
impl_from_IHTMLTable
(
iface
);
FIXME
(
"(%p)->(
v)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
@@ -324,7 +324,7 @@ static HRESULT WINAPI HTMLTable_get_width(IHTMLTable *iface, VARIANT *p)
...
@@ -324,7 +324,7 @@ static HRESULT WINAPI HTMLTable_get_width(IHTMLTable *iface, VARIANT *p)
static
HRESULT
WINAPI
HTMLTable_put_height
(
IHTMLTable
*
iface
,
VARIANT
v
)
static
HRESULT
WINAPI
HTMLTable_put_height
(
IHTMLTable
*
iface
,
VARIANT
v
)
{
{
HTMLTable
*
This
=
impl_from_IHTMLTable
(
iface
);
HTMLTable
*
This
=
impl_from_IHTMLTable
(
iface
);
FIXME
(
"(%p)->(
v)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
@@ -457,7 +457,7 @@ static HRESULT WINAPI HTMLTable_get_readyState(IHTMLTable *iface, BSTR *p)
...
@@ -457,7 +457,7 @@ static HRESULT WINAPI HTMLTable_get_readyState(IHTMLTable *iface, BSTR *p)
static
HRESULT
WINAPI
HTMLTable_put_onreadystatechange
(
IHTMLTable
*
iface
,
VARIANT
v
)
static
HRESULT
WINAPI
HTMLTable_put_onreadystatechange
(
IHTMLTable
*
iface
,
VARIANT
v
)
{
{
HTMLTable
*
This
=
impl_from_IHTMLTable
(
iface
);
HTMLTable
*
This
=
impl_from_IHTMLTable
(
iface
);
FIXME
(
"(%p)->(
v)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
...
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