[Webkit-unassigned] [Bug 58746] Move WebNodeHighlighter into its own file

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Apr 17 13:20:55 PDT 2011


https://bugs.webkit.org/show_bug.cgi?id=58746


Timothy Hatcher <timothy at apple.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #89958|1                           |0
        is obsolete|                            |




--- Comment #3 from Timothy Hatcher <timothy at apple.com>  2011-04-17 13:20:55 PST ---
(From update of attachment 89958)
View in context: https://bugs.webkit.org/attachment.cgi?id=89958&action=review

> Source/WebKit/mac/WebInspector/WebNodeHighlighter.mm:42
> +    self = [super init];
> +    if (!self)
> +        return nil;

I like this form:

if (!(self = [super init]))
    return nil;

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list