Bug 59898

Summary: [WINCE] Fix OwnPtr strict issues
Product: WebKit Reporter: Patrick R. Gansterer <paroga>
Component: PlatformAssignee: Patrick R. Gansterer <paroga>
Status: RESOLVED FIXED    
Severity: Normal CC: abarth
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Other   
OS: Other   
Bug Depends on:    
Bug Blocks: 59428    
Attachments:
Description Flags
Patch abarth: review+, abarth: commit-queue-

Description Patrick R. Gansterer 2011-05-01 15:01:39 PDT
see patch
Comment 1 Patrick R. Gansterer 2011-05-01 15:08:29 PDT
Created attachment 91849 [details]
Patch
Comment 2 Adam Barth 2011-05-01 15:12:01 PDT
Comment on attachment 91849 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=91849&action=review

> Source/WebCore/platform/graphics/wince/FontPlatformData.cpp:425
> -        m_private->m_rootFontData->m_hfont.set(0);
> +        m_private->m_rootFontData->m_hfont.clear();

Apparently we prefer assigning nullptr rather than clear.
Comment 3 Patrick R. Gansterer 2011-05-01 15:28:37 PDT
Committed r85433: <http://trac.webkit.org/changeset/85433>