⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 155375 in webkit


Ignore:
Timestamp:
Sep 9, 2013, 12:58:35 PM (13 years ago)
Author:
Antti Koivisto
Message:

Try to fix GTK build.

Not reviewed.

  • accessibility/AccessibilityTable.cpp:

(WebCore::AccessibilityTable::isTableExposableThroughAccessibility):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r155374 r155375  
     12013-09-09  Antti Koivisto  <antti@apple.com>
     2
     3        Try to fix GTK build.
     4       
     5        Not reviewed.
     6
     7        * accessibility/AccessibilityTable.cpp:
     8        (WebCore::AccessibilityTable::isTableExposableThroughAccessibility):
     9
    1102013-09-09  Antti Koivisto  <antti@apple.com>
    211
  • trunk/Source/WebCore/accessibility/AccessibilityTable.cpp

    r155374 r155375  
    309309    // Gtk+ ATs expect all tables to be exposed as tables.
    310310#if PLATFORM(GTK)
    311     Node* tableNode = toRenderTable(m_renderer)->node();
     311    Element* tableNode = toRenderTable(m_renderer)->element();
    312312    return tableNode && isHTMLTableElement(tableNode);
    313313#endif
Note: See TracChangeset for help on using the changeset viewer.