diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-08-28 12:12:54 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-29 11:30:04 +0200 |
commit | 86b78dcfb8bafd3c763d8c6b49671fd29fe91c35 (patch) | |
tree | f17c5cfa2af51ad4077a9ed7deb225476c808916 /odk | |
parent | 2f297f4680a3b523005f4d4f762e195ba5f8912e (diff) |
Fix typo in code
It passed "make check" on Linux
Change-Id: I255b7a0873170d956c914d76fd363e358f807d7a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101596
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'odk')
-rw-r--r-- | odk/examples/java/Inspector/MethodParametersDialog.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/odk/examples/java/Inspector/MethodParametersDialog.java b/odk/examples/java/Inspector/MethodParametersDialog.java index 621e6228b5da..216ef87f39df 100644 --- a/odk/examples/java/Inspector/MethodParametersDialog.java +++ b/odk/examples/java/Inspector/MethodParametersDialog.java @@ -65,7 +65,7 @@ public class MethodParametersDialog extends JDialog{ private Object m_oUnoReturnObject = null; private JLabel jLblResult; private JPanel jResultPanel = null; - private boolean bisdiposed = false; + private boolean bisdisposed = false; private XUnoMethodNode m_xUnoMethodNode; @@ -105,7 +105,7 @@ public class MethodParametersDialog extends JDialog{ super.requestFocus(); m_aParameterPanels[0].getInputComponent().requestFocusInWindow(); setVisible(true); - if (!bisdiposed){ + if (!bisdisposed){ ArrayList<Object> aMethodObjects = new ArrayList<Object>(); for (int i = 0; i < m_aParameterPanels.length; i++){ aMethodObjects.add(m_aParameterPanels[i].getValue()); @@ -319,7 +319,7 @@ public class MethodParametersDialog extends JDialog{ jCancelButton.setFocusPainted(true); jCancelButton.addActionListener(new ActionListener(){ public void actionPerformed(java.awt.event.ActionEvent evt) { - bisdiposed = true; + bisdisposed = true; dispose(); } }); |