Andrew Talbot : mshtml: Remove superfluous semicolons.
Module: wine Branch: master Commit: 37d18db78bcbeb804aab3e5c4ff98a89cfa4d4b7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=37d18db78bcbeb804aab3e5c4f... Author: Andrew Talbot <andrew.talbot(a)talbotville.com> Date: Mon Dec 22 20:22:06 2008 +0000 mshtml: Remove superfluous semicolons. --- dlls/mshtml/htmlstylesheet.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/mshtml/htmlstylesheet.c b/dlls/mshtml/htmlstylesheet.c index b074c25..adbe740 100644 --- a/dlls/mshtml/htmlstylesheet.c +++ b/dlls/mshtml/htmlstylesheet.c @@ -56,8 +56,8 @@ typedef struct { nsIDOMCSSRuleList *nslist; } HTMLStyleSheetRulesCollection; -#define HTMLSTYLESHEET(x) ((IHTMLStyleSheet*) &(x)->lpHTMLStyleSheetVtbl); -#define HTMLSTYLESHEETSCOL(x) ((IHTMLStyleSheetsCollection*) &(x)->lpHTMLStyleSheetsCollectionVtbl); +#define HTMLSTYLESHEET(x) ((IHTMLStyleSheet*) &(x)->lpHTMLStyleSheetVtbl) +#define HTMLSTYLESHEETSCOL(x) ((IHTMLStyleSheetsCollection*) &(x)->lpHTMLStyleSheetsCollectionVtbl) #define HTMLSTYLERULESCOL(x) ((IHTMLStyleSheetRulesCollection*) &(x)->lpHTMLStyleSheetRulesCollectionVtbl) #define HTMLSTYLERULESCOL_THIS(iface) \
participants (1)
-
Alexandre Julliard