Changeset 17425 in webkit


Ignore:
Timestamp:
Oct 29, 2006 12:48:17 PM (17 years ago)
Author:
aroben
Message:

More semi-fixes.

  • page/Page.cpp: Forgot to wrap the actual definition of setDefersLoading() in PLATFORM(MAC).
  • platform/PlatformWheelEvent.h: Fix up preprocessor directives.
Location:
trunk/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r17424 r17425  
     12006-10-29  Adam Roben  <aroben@apple.com>
     2
     3        More semi-fixes.
     4
     5        * page/Page.cpp: Forgot to wrap the actual definition of
     6        setDefersLoading() in PLATFORM(MAC).
     7        * platform/PlatformWheelEvent.h: Fix up preprocessor directives.
     8
    192006-10-29  Adam Roben  <aroben@apple.com>
    210
  • trunk/WebCore/page/Page.cpp

    r17424 r17425  
    137137}
    138138
     139#if PLATFORM(MAC)
    139140void Page::setDefersLoading(bool defers)
    140141{
     
    146147        frame->loader()->setDefersLoading(defers);
    147148}
     149#endif
    148150
    149151}
  • trunk/WebCore/platform/PlatformWheelEvent.h

    r17405 r17425  
    2929#include "IntPoint.h"
    3030
    31 #ifdef PLATFORM(MAC)
     31#if PLATFORM(MAC)
    3232#ifdef __OBJC__
    3333@class NSEvent;
     
    7171        void ignore() { m_isAccepted = false; }
    7272
    73 #ifdef PLATFORM(MAC)
     73#if PLATFORM(MAC)
    7474        PlatformWheelEvent(NSEvent*);
    7575#endif
Note: See TracChangeset for help on using the changeset viewer.