diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2015-07-02 18:26:18 +0200 |
---|---|---|
committer | Samuel Mehrbrodt <s.mehrbrodt@gmail.com> | 2015-07-03 09:14:23 +0000 |
commit | 1c5f07e60cfd81f27ad3aea0b56634554f3ef5a9 (patch) | |
tree | b3483c88ce443c8e8764b11782be236fc2e0170a /wizards/com | |
parent | 87dc6c82d5cd174ae2384b66a203a93402b43291 (diff) |
Fix typos
Change-Id: I98b4dfb0f72f315065693335e2f882bb2eed3afe
Reviewed-on: https://gerrit.libreoffice.org/16713
Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
Tested-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
Diffstat (limited to 'wizards/com')
7 files changed, 9 insertions, 9 deletions
diff --git a/wizards/com/sun/star/wizards/agenda/AgendaDocument.py b/wizards/com/sun/star/wizards/agenda/AgendaDocument.py index 531068de0399..8ab03c429dc6 100644 --- a/wizards/com/sun/star/wizards/agenda/AgendaDocument.py +++ b/wizards/com/sun/star/wizards/agenda/AgendaDocument.py @@ -410,7 +410,7 @@ class AgendaDocument(TextDocument): ''' create the minutes for the given topics or remove the minutes section from the document. - If no topics are supplied, or the user specified not to create minuts, + If no topics are supplied, or the user specified not to create minutes, the minutes section will be removed, @param topicsData supplies PropertyValue arrays containing the values for the topics. @@ -514,7 +514,7 @@ class AgendaDocument(TextDocument): '''given a text range and a text, fills the given text range with the given text. - If the given text is empty, uses a placeholder with the giveb + If the given text is empty, uses a placeholder with the given placeholder text. @param range text range to fill @param text the text to fill to the text range object. diff --git a/wizards/com/sun/star/wizards/ui/FieldSelection.java b/wizards/com/sun/star/wizards/ui/FieldSelection.java index 3fc1ade50974..1d709b80004c 100644 --- a/wizards/com/sun/star/wizards/ui/FieldSelection.java +++ b/wizards/com/sun/star/wizards/ui/FieldSelection.java @@ -355,7 +355,7 @@ public class FieldSelection private void changeSelectionOrder(int iNeighbor) { short[] iSelIndices = xSelectedFieldsListBox.getSelectedItemsPos(); - // TODO: we are assuming that the array starts with the lowest index. Verfy this assumption!!!!! + // TODO: we are assuming that the array starts with the lowest index. Verify this assumption!!!!! if (iSelIndices.length == 1) { short iSelIndex = iSelIndices[0]; diff --git a/wizards/com/sun/star/wizards/ui/event/DataAware.py b/wizards/com/sun/star/wizards/ui/event/DataAware.py index 3a4a0efea026..3ae8d052fe1a 100644 --- a/wizards/com/sun/star/wizards/ui/event/DataAware.py +++ b/wizards/com/sun/star/wizards/ui/event/DataAware.py @@ -135,7 +135,7 @@ class DataAware(object): ''' given a collection containing DataAware objects, - calls updateUI() on each memebr of the collection. + calls updateUI() on each member of the collection. @param dataAwares a collection containing DataAware objects. ''' diff --git a/wizards/com/sun/star/wizards/ui/event/UnoDataAware.py b/wizards/com/sun/star/wizards/ui/event/UnoDataAware.py index 04ba03a3ddb2..195c7da23006 100644 --- a/wizards/com/sun/star/wizards/ui/event/UnoDataAware.py +++ b/wizards/com/sun/star/wizards/ui/event/UnoDataAware.py @@ -22,7 +22,7 @@ from ...common.PropertyNames import PropertyNames ''' @author rpiterman -This class suppoprts imple cases where a UI control can +This class supports simple cases where a UI control can be directly synchronized with a data property. Such controls are: the different text controls (synchronizing the "Text" , "Value", "Date", "Time" property), diff --git a/wizards/com/sun/star/wizards/web/FTPDialog.py b/wizards/com/sun/star/wizards/web/FTPDialog.py index 8b631508a68a..5f45ae6fe172 100644 --- a/wizards/com/sun/star/wizards/web/FTPDialog.py +++ b/wizards/com/sun/star/wizards/web/FTPDialog.py @@ -353,7 +353,7 @@ class FTPDialog(UnoDialog2, UIConsts): # changes the status label and icon, according to the # given status - # @param status one opf the private status-constants. + # @param status one of the private status-constants. # if this param is not one of them, an "unknown error" status is displayed. def setLabel(self, status): if status == self.STATUS_UNKNOWN: @@ -363,7 +363,7 @@ class FTPDialog(UnoDialog2, UIConsts): # connected! self.setLabel1(self.resources.resFTPConnected, self.ICON_OK) elif status == self.STATUS_USER_PWD_WRONG: - # wronf password + # wrong password self.setLabel1(self.resources.resFTPUserPwdWrong, self.ICON_ERROR) elif status == self.STATUS_SERVER_NOT_FOUND: # problem resolving server name diff --git a/wizards/com/sun/star/wizards/web/Process.py b/wizards/com/sun/star/wizards/web/Process.py index b8721a096293..3de4c6c2bf7b 100644 --- a/wizards/com/sun/star/wizards/web/Process.py +++ b/wizards/com/sun/star/wizards/web/Process.py @@ -446,7 +446,7 @@ class Process(ProcessErrors): # # In present this is always the case. # may be in the future, when - # a tree is used, it will be abit different. + # a tree is used, it will be a bit different. if (isinstance (item, CGDocument)): if (not self.export2(item, contentDir, task)): return False diff --git a/wizards/com/sun/star/wizards/web/WWD_Startup.py b/wizards/com/sun/star/wizards/web/WWD_Startup.py index d3a0f29b3990..1bbc9058d110 100644 --- a/wizards/com/sun/star/wizards/web/WWD_Startup.py +++ b/wizards/com/sun/star/wizards/web/WWD_Startup.py @@ -533,7 +533,7 @@ class WWD_Startup(WWD_General): ''' changes the DataAwares Objects' (in - the gioen list) DataObject to the + the given list) DataObject to the @param data @param list ''' |