Module: wine Branch: master Commit: f02a01574beb9e791003ed2e15286c62d45708d0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f02a01574beb9e791003ed2e15...
Author: Michael Stefaniuc mstefani@redhat.de Date: Sun Oct 21 01:13:52 2007 +0200
mshtml/tests: Move the 'const' after REFIID as REFIID is a macro that already starts with 'const'.
---
dlls/mshtml/tests/dom.c | 20 ++++++++++---------- 1 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/dlls/mshtml/tests/dom.c b/dlls/mshtml/tests/dom.c index 3933ac8..d49e1f0 100644 --- a/dlls/mshtml/tests/dom.c +++ b/dlls/mshtml/tests/dom.c @@ -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,