Changeset 54383 in webkit


Ignore:
Timestamp:
Feb 4, 2010 4:19:45 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-02-04 Stephan Aßmus <superstippi@gmx.de>

Reviewed by David Levin.

Misc coding style fixes in Haiku port code.
https://bugs.webkit.org/show_bug.cgi?id=34527

No tests needed.

  • platform/haiku/ContextMenuItemHaiku.cpp: Trailing white space, NULL -> 0
  • platform/haiku/DragImageHaiku.cpp: Trailing white space.
  • platform/haiku/FileChooserHaiku.cpp: Sorted headers.
  • platform/haiku/LocalizedStringsHaiku.cpp: Needed to include NotImplemented.h
Location:
trunk/WebCore
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r54377 r54383  
     12010-02-04  Stephan Aßmus  <superstippi@gmx.de>
     2
     3        Reviewed by David Levin.
     4
     5        Misc coding style fixes in Haiku port code.
     6        https://bugs.webkit.org/show_bug.cgi?id=34527
     7
     8        No tests needed.
     9
     10        * platform/haiku/ContextMenuItemHaiku.cpp: Trailing white space, NULL -> 0
     11        * platform/haiku/DragImageHaiku.cpp: Trailing white space.
     12        * platform/haiku/FileChooserHaiku.cpp: Sorted headers.
     13        * platform/haiku/LocalizedStringsHaiku.cpp: Needed to include NotImplemented.h
     14
    1152010-02-04  Enrica Casucci  <enrica@apple.com>
    216
  • trunk/WebCore/platform/haiku/ContextMenuItemHaiku.cpp

    r46019 r54383  
    7171{
    7272    BMenuItem* item = m_platformDescription;
    73     m_platformDescription = NULL;
     73    m_platformDescription = 0;
    7474    return item;
    7575}
     
    117117}
    118118
    119 String ContextMenuItem::title() const 
     119String ContextMenuItem::title() const
    120120{
    121121    if (m_platformDescription)
  • trunk/WebCore/platform/haiku/DragImageHaiku.cpp

    r46019 r54383  
    6868{
    6969    notImplemented();
    70     return 0;     
     70    return 0;
    7171}
    7272
  • trunk/WebCore/platform/haiku/FileChooserHaiku.cpp

    r51003 r54383  
    2323#include "FileChooser.h"
    2424
     25#include "Icon.h"
    2526#include "NotImplemented.h"
    26 #include "Icon.h"
    2727
    2828
  • trunk/WebCore/platform/haiku/LocalizedStringsHaiku.cpp

    r53512 r54383  
    2929#include "LocalizedStrings.h"
    3030
     31#include "NotImplemented.h"
    3132#include "PlatformString.h"
    3233
Note: See TracChangeset for help on using the changeset viewer.