Changeset 92082 in webkit


Ignore:
Timestamp:
Jul 31, 2011 1:48:56 AM (13 years ago)
Author:
dbates@webkit.org
Message:

[GTK] Remove unused variable coreChild in WebCore::getChildForTable()
https://bugs.webkit.org/show_bug.cgi?id=65427

This variable was unused when it was initially added in <http://trac.webkit.org/changeset/89660> (bug #62718)
and it is unused today. We should remove it. This will also resolve a compiler warning.

Reviewed by Xan Lopez.

  • accessibility/gtk/AccessibilityObjectWrapperAtk.cpp:

(getChildForTable):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r92074 r92082  
     12011-07-31  Daniel Bates  <dbates@webkit.org>
     2
     3        [GTK] Remove unused variable coreChild in WebCore::getChildForTable()
     4        https://bugs.webkit.org/show_bug.cgi?id=65427
     5
     6        This variable was unused when it was initially added in <http://trac.webkit.org/changeset/89660> (bug #62718)
     7        and it is unused today. We should remove it. This will also resolve a compiler warning.
     8
     9        Reviewed by Xan Lopez.
     10
     11        * accessibility/gtk/AccessibilityObjectWrapperAtk.cpp:
     12        (getChildForTable):
     13
    1142011-07-30  Daniel Bates  <dbates@webkit.org>
    215
  • trunk/Source/WebCore/accessibility/gtk/AccessibilityObjectWrapperAtk.cpp

    r89660 r92082  
    349349    size_t tableChildrenCount = tableChildren.size();
    350350    size_t cellsCount = 0;
    351     AccessibilityObject* coreChild = 0;
    352351
    353352    // Look for the actual index of the cell inside the table.
Note: See TracChangeset for help on using the changeset viewer.