[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
hyatt
hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:40:34 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit 51fc34addab4d31dfeed8e9a858ccbef0e43f09b
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Wed May 19 03:03:49 2004 +0000
Fix crash when retrieving the AXHelp text.
* kwq/KWQAccObject.mm:
(-[KWQAccObject helpText]):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@6632 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index ad115fa..4b63647 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,12 @@
2004-05-18 David Hyatt <hyatt at apple.com>
+ Fix crash when retrieving the AXHelp text.
+
+ * kwq/KWQAccObject.mm:
+ (-[KWQAccObject helpText]):
+
+2004-05-18 David Hyatt <hyatt at apple.com>
+
Improve layout scheduling and add instrumentation for debugging layout scheduling
Reviewed by kocienda
diff --git a/WebCore/kwq/KWQAccObject.mm b/WebCore/kwq/KWQAccObject.mm
index 5ce2a8a..0bdb410 100644
--- a/WebCore/kwq/KWQAccObject.mm
+++ b/WebCore/kwq/KWQAccObject.mm
@@ -308,7 +308,7 @@ using khtml::RenderImage;
for (RenderObject* curr = m_renderer; curr; curr = curr->parent()) {
if (curr->element() && curr->element()->isHTMLElement()) {
- QString summary = static_cast<ElementImpl*>(m_areaElement)->getAttribute(ATTR_SUMMARY).string();
+ QString summary = static_cast<ElementImpl*>(curr->element())->getAttribute(ATTR_SUMMARY).string();
if (!summary.isEmpty())
return summary.getNSString();
QString title = static_cast<ElementImpl*>(curr->element())->getAttribute(ATTR_TITLE).string();
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list