From 7f436c1fd3a5f879fc99652043befb35158b3321 Mon Sep 17 00:00:00 2001 From: Andras Timar Date: Thu, 26 Sep 2013 11:44:54 +0200 Subject: typo fixes in comments Change-Id: Iaadec33715f8e0e0c6595c5e684606905274fdab --- wizards/com/sun/star/wizards/ui/event/AbstractListener.java | 2 +- wizards/com/sun/star/wizards/web/WWD_Events.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'wizards') diff --git a/wizards/com/sun/star/wizards/ui/event/AbstractListener.java b/wizards/com/sun/star/wizards/ui/event/AbstractListener.java index 4b6fcd2acf49..132e0cbf22f8 100644 --- a/wizards/com/sun/star/wizards/ui/event/AbstractListener.java +++ b/wizards/com/sun/star/wizards/ui/event/AbstractListener.java @@ -34,7 +34,7 @@ import java.util.HashMap; *
  • Write a subclass which implements the needed Listener(s).
  • * in the even methods, use invoke(...). *
  • When instanciating the component, register the subclass as the event listener.
  • - *
  • Write the methods which should be performed when the event occures.
  • + *
  • Write the methods which should be performed when the event occurs.
  • *
  • call the "add" method, to define a component-event-action mapping.
  • * */ diff --git a/wizards/com/sun/star/wizards/web/WWD_Events.py b/wizards/com/sun/star/wizards/web/WWD_Events.py index 0e75c2388a41..d0f65080b830 100644 --- a/wizards/com/sun/star/wizards/web/WWD_Events.py +++ b/wizards/com/sun/star/wizards/web/WWD_Events.py @@ -530,7 +530,7 @@ class WWD_Events(WWD_Startup): path = fileAccess.getPath(p.url, None) # target exists? if fileAccess.exists(p.url, False): - #if its a directory + #if it's a directory if fileAccess.isDirectory(p.url): #check if its empty files = fileAccess.listFiles(p.url, True) @@ -592,7 +592,7 @@ class WWD_Events(WWD_Startup): path = fileAccess.getPath(p.cp_URL, None) # target exists? if fileAccess.exists(p.cp_URL, False): - #if its a directory + #if it's a directory if fileAccess.isDirectory(p.cp_URL): message = self.resources.resZipTargetIsDir.replace( "%FILENAME", path) @@ -618,7 +618,7 @@ class WWD_Events(WWD_Startup): path = fileAccess.getPath(p.cp_URL, None) # target exists? if fileAccess.exists(p.url, False): - #if its a directory + #if it's a directory if fileAccess.isDirectory(p.url): #check if its empty files = fileAccess.listFiles(p.url, True) -- cgit