Changeset 19948 in webkit


Ignore:
Timestamp:
Mar 2, 2007 1:10:59 PM (17 years ago)
Author:
weinig
Message:

WebCore:

Reviewed by Anders.

Try to fix the Qt build.

  • platform/qt/TemporaryLinkStubs.cpp: Add stubs. (WebCore::searchMenuNoRecentSearchesText): (WebCore::searchMenuRecentSearchesText): (WebCore::searchMenuClearRecentSearchesText): (WebCore::AXWebAreaText): (WebCore::AXLinkText): (WebCore::AXListMarkerText): (WebCore::AXImageMapText): (WebCore::AXHeadingText):

WebKitQt:

Reviewed by Anders.

Try to fix the Qt build

  • WebCoreSupport/DragClientQt.cpp: (WebCore::DragClientQt::willPerformDragDestinationAction): (WebCore::DragClientQt::dragControllerDestroyed): (WebCore::DragClientQt::createDragImageForLink):
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r19946 r19948  
     12007-03-02  Sam Weinig  <sam@webkit.org>
     2
     3        Reviewed by Anders.
     4
     5        Try to fix the Qt build.
     6
     7        * platform/qt/TemporaryLinkStubs.cpp: Add stubs.
     8        (WebCore::searchMenuNoRecentSearchesText):
     9        (WebCore::searchMenuRecentSearchesText):
     10        (WebCore::searchMenuClearRecentSearchesText):
     11        (WebCore::AXWebAreaText):
     12        (WebCore::AXLinkText):
     13        (WebCore::AXListMarkerText):
     14        (WebCore::AXImageMapText):
     15        (WebCore::AXHeadingText):
     16
    1172007-03-02  David Harrison  <harrison@apple.com>
    218
  • trunk/WebCore/platform/qt/TemporaryLinkStubs.cpp

    r19299 r19948  
    121121String WebCore::contextMenuItemTagLeftToRight() { return String(); }
    122122String WebCore::contextMenuItemTagRightToLeft() { return String(); }
     123String WebCore::searchMenuNoRecentSearchesText() { return String(); }
     124String WebCore::searchMenuRecentSearchesText() { return String(); }
     125String WebCore::searchMenuClearRecentSearchesText() { return String(); }
     126String WebCore::AXWebAreaText() { return String(); }
     127String WebCore::AXLinkText() { return String(); }
     128String WebCore::AXListMarkerText() { return String(); }
     129String WebCore::AXImageMapText() { return String(); }
     130String WebCore::AXHeadingText() { return String(); }
    123131
    124132void Frame::setNeedsReapplyStyles() { notImplemented(); }
  • trunk/WebKitQt/ChangeLog

    r19877 r19948  
     12007-03-02  Sam Weinig  <sam@webkit.org>
     2
     3        Reviewed by Anders.
     4
     5        Try to fix the Qt build
     6
     7        * WebCoreSupport/DragClientQt.cpp:
     8        (WebCore::DragClientQt::willPerformDragDestinationAction):
     9        (WebCore::DragClientQt::dragControllerDestroyed):
     10        (WebCore::DragClientQt::createDragImageForLink):
     11
    1122007-02-26  Maciej Stachowiak  <mjs@apple.com>
    213
  • trunk/WebKitQt/WebCoreSupport/DragClientQt.cpp

    r19693 r19948  
    2626#include "DragClientQt.h"
    2727
    28 namespace WebCore
    29 {
     28namespace WebCore {
    3029
    3130DragDestinationAction DragClientQt::actionMaskForDrag(DragData*)
     
    3433}
    3534
    36 void DragClientQt::willPerformDragDestinationAction(DragDestinationAction,
    37                                                     DragData*)
     35void DragClientQt::willPerformDragDestinationAction(DragDestinationAction, DragData*)
    3836{
    3937}
    4038
    4139void DragClientQt::dragControllerDestroyed()
    42 {   
     40{
    4341}
    4442
     
    5856DragImageRef DragClientQt::createDragImageForLink(KURL&, const String&, Frame*)
    5957{
     58    return 0;
    6059}
    6160
    62 }
    63 
    64 
     61} // namespace WebCore
Note: See TracChangeset for help on using the changeset viewer.