IDEMPIERE-777 I found a bug at PrintData.getRowIndex() Method. Thanks to Hagiwara Hideaki

This commit is contained in:
Carlos Ruiz 2013-03-21 11:37:14 -05:00
parent 318f9d8745
commit 5781427ac6
1 changed files with 1 additions and 1 deletions

View File

@ -291,7 +291,7 @@ public class PrintData implements Serializable
*/
public int getRowIndex()
{
return m_matrix.getRowCount();
return m_matrix.getRowIndex();
} // getRowIndex
/**