summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-04-29 15:16:37 +0200
committerBartosz Kosiorek <gang65@poczta.onet.pl>2018-05-02 07:59:14 +0200
commit73414e3fe8d8cede2c4bc3bc605618873db003c4 (patch)
treea9c615dcbc96831e047dc184244f6b82e5836d16 /odk
parent9ff3ea9e38e9ae084cb9c1c670eb5ea657c834eb (diff)
Fix typos
Change-Id: I56bd1a7ac204f4302261e46d0b8c5dd62c4b6df9 Reviewed-on: https://gerrit.libreoffice.org/53624 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Bartosz Kosiorek <gang65@poczta.onet.pl>
Diffstat (limited to 'odk')
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java8
1 files changed, 4 insertions, 4 deletions
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)