diff options
author | Andras Timar <andras.timar@collabora.com> | 2013-09-26 11:44:54 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2013-09-26 11:47:45 +0200 |
commit | 7f436c1fd3a5f879fc99652043befb35158b3321 (patch) | |
tree | fb7afa124abc55dba2c9d17f4fa10a593485febf /wizards | |
parent | 69c4a8bae5caadc4ff53660dd3f2b938f6dc1734 (diff) |
typo fixes in comments
Change-Id: Iaadec33715f8e0e0c6595c5e684606905274fdab
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/ui/event/AbstractListener.java | 2 | ||||
-rw-r--r-- | wizards/com/sun/star/wizards/web/WWD_Events.py | 6 |
2 files changed, 4 insertions, 4 deletions
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; * <li>Write a subclass which implements the needed Listener(s).</li> * in the even methods, use invoke(...). * <li>When instanciating the component, register the subclass as the event listener.</li> - * <li>Write the methods which should be performed when the event occures.</li> + * <li>Write the methods which should be performed when the event occurs.</li> * <li>call the "add" method, to define a component-event-action mapping.</li> * </list> */ 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) |