Changeset 25699 in webkit


Ignore:
Timestamp:
Sep 21, 2007 9:20:59 PM (17 years ago)
Author:
bdash
Message:

2007-09-21 Mark Rowe <mrowe@apple.com>

Build fix for non-Mac platforms after r25697.

Rename Frame::cleanupPlatformScriptObjects to Frame::clearPlatformScriptObjects.

  • bridge/win/FrameWin.cpp:
  • page/gdk/FrameGdk.cpp:
  • page/qt/FrameQt.cpp:
  • platform/wx/TemporaryLinkStubs.cpp:
Location:
trunk/WebCore
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r25698 r25699  
     12007-09-21  Mark Rowe  <mrowe@apple.com>
     2
     3        Build fix for non-Mac platforms after r25697.
     4       
     5        Rename Frame::cleanupPlatformScriptObjects to Frame::clearPlatformScriptObjects.
     6
     7        * bridge/win/FrameWin.cpp:
     8        * page/gdk/FrameGdk.cpp:
     9        * page/qt/FrameQt.cpp:
     10        * platform/wx/TemporaryLinkStubs.cpp:
     11
    1122007-09-21  Adele Peterson  <adele@apple.com>
    213
  • trunk/WebCore/bridge/win/FrameWin.cpp

    r25676 r25699  
    7171using namespace HTMLNames;
    7272
    73 void Frame::cleanupPlatformScriptObjects()
     73void Frame::clearPlatformScriptObjects()
    7474{
    7575}
  • trunk/WebCore/page/gdk/FrameGdk.cpp

    r24923 r25699  
    3939}
    4040
    41 void Frame::cleanupPlatformScriptObjects()
     41void Frame::clearPlatformScriptObjects()
    4242{
    4343    notImplemented();
  • trunk/WebCore/page/qt/FrameQt.cpp

    r24980 r25699  
    110110}
    111111
    112 void Frame::cleanupPlatformScriptObjects()
     112void Frame::clearPlatformScriptObjects()
    113113{
    114114}
  • trunk/WebCore/platform/wx/TemporaryLinkStubs.cpp

    r25648 r25699  
    108108
    109109void Frame::print() { notImplemented(); }
    110 void Frame::cleanupPlatformScriptObjects() { notImplemented(); }
     110void Frame::clearPlatformScriptObjects() { notImplemented(); }
    111111bool Frame::isCharacterSmartReplaceExempt(UChar, bool) { notImplemented(); return true; }
    112112//void Frame::respondToChangedSelection(WebCore::Selection const&,bool) { }
Note: See TracChangeset for help on using the changeset viewer.