summaryrefslogtreecommitdiffstats
path: root/WebCore/accessibility/AccessibilityTableCell.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/accessibility/AccessibilityTableCell.cpp')
-rw-r--r--WebCore/accessibility/AccessibilityTableCell.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/accessibility/AccessibilityTableCell.cpp b/WebCore/accessibility/AccessibilityTableCell.cpp
index 318c619..7fadb88 100644
--- a/WebCore/accessibility/AccessibilityTableCell.cpp
+++ b/WebCore/accessibility/AccessibilityTableCell.cpp
@@ -71,7 +71,7 @@ bool AccessibilityTableCell::accessibilityIsIgnored() const
AccessibilityObject* AccessibilityTableCell::parentTable() const
{
if (!m_renderer || !m_renderer->isTableCell())
- return false;
+ return 0;
return axObjectCache()->getOrCreate(toRenderTableCell(m_renderer)->table());
}