Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(66)

Unified Diff: user/src/com/google/gwt/user/client/ui/HTMLTable.java

Issue 134803: HTMLTable.Cell.getElement() calls getCellFormatter().getElement() with row and column swapped (Closed) Base URL: http://google-web-toolkit.googlecode.com/svn/trunk/
Patch Set: Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | user/test/com/google/gwt/user/client/ui/HTMLTableTestBase.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: user/src/com/google/gwt/user/client/ui/HTMLTable.java
===================================================================
--- user/src/com/google/gwt/user/client/ui/HTMLTable.java (revision 7463)
+++ user/src/com/google/gwt/user/client/ui/HTMLTable.java (working copy)
@@ -76,7 +76,7 @@
* @return the cell's element.
*/
public Element getElement() {
- return getCellFormatter().getElement(cellIndex, rowIndex);
+ return getCellFormatter().getElement(rowIndex, cellIndex);
}
/**
« no previous file with comments | « no previous file | user/test/com/google/gwt/user/client/ui/HTMLTableTestBase.java » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld revision f51cb906c4ad+