diff options
author | Noel Grandin <noel@peralex.com> | 2013-04-23 09:30:47 +0200 |
---|---|---|
committer | Fridrich Strba <fridrich@documentfoundation.org> | 2013-04-24 08:57:57 +0000 |
commit | 0c37eeebb0ecbe68fdf8051f627ef1e4929fc5dd (patch) | |
tree | 1970990d2a0e650f952bd4f9e229da71cc808828 /forms | |
parent | f62324cecd93ff2a6019c54b5cd85c83ff672e04 (diff) |
Java cleanup, use generic containers where possible
Change-Id: Icd830004de3e121f5b96393e7d7b447775833419
Reviewed-on: https://gerrit.libreoffice.org/3569
Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org>
Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'forms')
-rw-r--r-- | forms/qa/integration/forms/TableCellTextBinding.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/forms/qa/integration/forms/TableCellTextBinding.java b/forms/qa/integration/forms/TableCellTextBinding.java index 40a5d698617b..8a1d1fb8ce18 100644 --- a/forms/qa/integration/forms/TableCellTextBinding.java +++ b/forms/qa/integration/forms/TableCellTextBinding.java @@ -48,7 +48,7 @@ public class TableCellTextBinding private String m_newCellText; private String m_lastKnownCellText; private boolean m_haveNewCellText; - private java.util.List m_listeners; + private java.util.List<com.sun.star.util.XModifyListener> m_listeners; /** Creates a new instance of TableCellTextBinding */ public TableCellTextBinding( XCell cell ) @@ -56,7 +56,7 @@ public class TableCellTextBinding m_cellText = UnoRuntime.queryInterface( XTextRange.class, cell ); m_newCellText = new String(); - m_listeners = new java.util.LinkedList(); + m_listeners = new java.util.LinkedList<com.sun.star.util.XModifyListener>(); start(); } |