summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-05 11:08:06 +0200
committerNoel Grandin <noel@peralex.com>2014-08-08 09:48:16 +0200
commit8d6cf7a147acde4e4a4f7600af25ed614b07f90d (patch)
treeae8f52bd74fb33459fe69eadbdb57271df86fd94 /forms
parent60fad3fabb26a50ea238bed2f046670c6e5678f7 (diff)
java: remove dead methods
Change-Id: I9f2e705fd603a7c8832c0f0772bee9f395380a0d
Diffstat (limited to 'forms')
-rw-r--r--forms/qa/integration/forms/CellBinding.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/forms/qa/integration/forms/CellBinding.java b/forms/qa/integration/forms/CellBinding.java
index 92060711130a..0919051ddb25 100644
--- a/forms/qa/integration/forms/CellBinding.java
+++ b/forms/qa/integration/forms/CellBinding.java
@@ -500,22 +500,6 @@ public class CellBinding extends complexlib.ComplexTestCase
}
/* ------------------------------------------------------------------ */
- /** sets the given cell range as list entry source for the given control
- */
- private void setListSource( XPropertySet _listSink, short _sourceCol, short _rowStart, short _rowEnd ) throws com.sun.star.uno.Exception
- {
- CellRangeAddress listSourceAddress = new CellRangeAddress( (short)0, _sourceCol, _rowStart, _sourceCol, _rowEnd );
- NamedValue addressParameter = new NamedValue( "CellRange", listSourceAddress );
-
- XListEntrySource listSource = UnoRuntime.queryInterface( XListEntrySource.class,
- m_document.createInstanceWithArguments( "com.sun.star.table.CellRangeListSource", new NamedValue[]{ addressParameter } )
- );
- XListEntrySink listSink = UnoRuntime.queryInterface( XListEntrySink.class,
- _listSink );
- listSink.setListEntrySource( listSource );
- }
-
- /* ------------------------------------------------------------------ */
/** simulates a user action to check a radio button
*/
private void simulateUserRadioCheck( XPropertySet radioModel ) throws com.sun.star.uno.Exception