Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarvin Mueller2013-09-24 14:05:48 +0000
committerMarvin Mueller2013-09-24 14:05:48 +0000
commited12699afc2f36faff133370e38ac0aec9d891f1 (patch)
treea0bcfa460576eeb58a3a5417b710d510430327e0
parentf56df1771fc9617215870de85ef0ab55ecb9b1e9 (diff)
downloadorg.eclipse.jubula.core-ed12699afc2f36faff133370e38ac0aec9d891f1.tar.gz
org.eclipse.jubula.core-ed12699afc2f36faff133370e38ac0aec9d891f1.tar.xz
org.eclipse.jubula.core-ed12699afc2f36faff133370e38ac0aec9d891f1.zip
Sprint task - apply patch from bug http://bugs.eclipse.org/415569
-rw-r--r--org.eclipse.jubula.rc.common/src/org/eclipse/jubula/rc/common/tester/AbstractTableTester.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jubula.rc.common/src/org/eclipse/jubula/rc/common/tester/AbstractTableTester.java b/org.eclipse.jubula.rc.common/src/org/eclipse/jubula/rc/common/tester/AbstractTableTester.java
index 8c8ba1a7e..a6a128e3e 100644
--- a/org.eclipse.jubula.rc.common/src/org/eclipse/jubula/rc/common/tester/AbstractTableTester.java
+++ b/org.eclipse.jubula.rc.common/src/org/eclipse/jubula/rc/common/tester/AbstractTableTester.java
@@ -594,7 +594,7 @@ public abstract class AbstractTableTester
* {@inheritDoc}
*/
public String rcReadValueAtMousePosition(String variable) {
- Cell cellAtMousePosition = getTableAdapter().getSelectedCell();
+ Cell cellAtMousePosition = getCellAtMousePosition();
return getCellText(cellAtMousePosition.getRow(),
cellAtMousePosition.getCol());
}

Back to the top