From 73414e3fe8d8cede2c4bc3bc605618873db003c4 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Sun, 29 Apr 2018 15:16:37 +0200 Subject: Fix typos Change-Id: I56bd1a7ac204f4302261e46d0b8c5dd62c4b6df9 Reviewed-on: https://gerrit.libreoffice.org/53624 Tested-by: Jenkins Reviewed-by: Bartosz Kosiorek --- .../OfficeDev/DesktopEnvironment/CustomizeView.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'odk/examples') diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java index 0678ee009f1d..3ff97d1402e9 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java +++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java @@ -139,7 +139,7 @@ public class CustomizeView extends JPanel return; // be listener for click events - // They will toogle the UI controls. + // They will toggle the UI controls. ClickListener aMenuBarHandler = new ClickListener(FEATUREURL_MENUBAR ,FEATUREPROP_MENUBAR ,xFrame); ClickListener aToolBarHandler = new ClickListener(FEATUREURL_TOOLBAR ,FEATUREPROP_TOOLBAR ,xFrame); ClickListener aObjectBarHandler = new ClickListener(FEATUREURL_OBJECTBAR,FEATUREPROP_OBJECTBAR,xFrame); @@ -165,7 +165,7 @@ public class CustomizeView extends JPanel /* * react for click events of the used check boxes * We use our internal set dispatch objects to - * call it. This calls toogle the menu/object- or toolbar. + * call it. This calls toggle the menu/object- or toolbar. * Note: Because we are listener status events too - hopefully * we get a notification, if toggling was successfully or not. * We use this information to update our check boxes again. @@ -175,7 +175,7 @@ public class CustomizeView extends JPanel private class ClickListener implements ActionListener, com.sun.star.lang.XEventListener { - /// URL, to toogle the requested UI item + /// URL, to toggle the requested UI item private final String m_sURL; /// name of the property which must be used in combination with the URL private final String m_sProp; @@ -208,7 +208,7 @@ public class CustomizeView extends JPanel * * @param aEvent * describes the check box and its state - * we can use to toogle the requested office + * we can use to toggle the requested office * resource. */ public void actionPerformed(ActionEvent aEvent) -- cgit