summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2015-07-02 18:26:18 +0200
committerSamuel Mehrbrodt <s.mehrbrodt@gmail.com>2015-07-03 09:14:23 +0000
commit1c5f07e60cfd81f27ad3aea0b56634554f3ef5a9 (patch)
treeb3483c88ce443c8e8764b11782be236fc2e0170a /wizards
parent87dc6c82d5cd174ae2384b66a203a93402b43291 (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')
-rw-r--r--wizards/com/sun/star/wizards/agenda/AgendaDocument.py4
-rw-r--r--wizards/com/sun/star/wizards/ui/FieldSelection.java2
-rw-r--r--wizards/com/sun/star/wizards/ui/event/DataAware.py2
-rw-r--r--wizards/com/sun/star/wizards/ui/event/UnoDataAware.py2
-rw-r--r--wizards/com/sun/star/wizards/web/FTPDialog.py4
-rw-r--r--wizards/com/sun/star/wizards/web/Process.py2
-rw-r--r--wizards/com/sun/star/wizards/web/WWD_Startup.py2
-rw-r--r--wizards/source/access2base/DoCmd.xba4
-rw-r--r--wizards/source/depot/CommonLang.xba4
-rw-r--r--wizards/source/importwizard/API.xba2
10 files changed, 14 insertions, 14 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
'''
diff --git a/wizards/source/access2base/DoCmd.xba b/wizards/source/access2base/DoCmd.xba
index 0cc2605b14b5..54156558a5c8 100644
--- a/wizards/source/access2base/DoCmd.xba
+++ b/wizards/source/access2base/DoCmd.xba
@@ -2016,7 +2016,7 @@ End Sub &apos; _DispatchCommand V1.3.0
REM -----------------------------------------------------------------------------------------------------------------------
Private Function _getTempDirectoryURL() As String
-&apos; Return the tempry directory defined in the OO Options (Paths)
+&apos; Return the temporary directory defined in the OO Options (Paths)
Dim sDirectory As String, oSettings As Object, oPathSettings As Object
If _ErrorHandler() Then On Local Error Goto Error_Function
@@ -2466,4 +2466,4 @@ Dim oShell As Object
oShell.execute(sCommand, &quot;&quot; , com.sun.star.system.SystemShellExecuteFlags.DEFAULTS)
End Sub &apos; _ShellExecute V0.8.5
-</script:module> \ No newline at end of file
+</script:module>
diff --git a/wizards/source/depot/CommonLang.xba b/wizards/source/depot/CommonLang.xba
index c8a213779509..ec2f62733237 100644
--- a/wizards/source/depot/CommonLang.xba
+++ b/wizards/source/depot/CommonLang.xba
@@ -35,7 +35,7 @@ Public Const SBCOLUMNPROVFIX2 = 9 &apos; Fixed provision, sheet 2
Public Const SBCOLUMNPROCEEDS2 = 12 &apos; Profit, sheet 2
Public Const SBCOLUMNQTYSOLD2 = 14 &apos; Quantity sold, sheet 2
Public Const SBCOLUMNQTYREST2 = 15 &apos; Quantity not sold yet, sheet 2
-Public Const SBCOLUMNPRCREST2 = 16 &apos; Proportional proce for quantity not sold yet, sheet 2
+Public Const SBCOLUMNPRCREST2 = 16 &apos; Proportional price for quantity not sold yet, sheet 2
Public Const SBCOLUMNREALPROC2 = 17 &apos; Realized proceeds, sheet 2
Public Const SBCOLUMNDIVIDEND2 = 18 &apos; Dividend paid, sheet 2
Public Const SBCOLUMNREALPROFIT2 = 19 &apos; Realized profit, sheet 2
@@ -365,4 +365,4 @@ Sub InitializeStartUpModel()
.cmdGoOn.Label = sOK
.cmdCancel.Label = sCancel
End With
-End Sub</script:module> \ No newline at end of file
+End Sub</script:module>
diff --git a/wizards/source/importwizard/API.xba b/wizards/source/importwizard/API.xba
index c62e88700201..97111aecafbd 100644
--- a/wizards/source/importwizard/API.xba
+++ b/wizards/source/importwizard/API.xba
@@ -205,7 +205,7 @@ End Function
Function QueryValue(BaseKey As Long, sKeyName As String, sValueName As String) As Variant
Dim lRetVal As Long &apos; Returnvalue API-Call
-Dim hKey As Long &apos; Onen key handle
+Dim hKey As Long &apos; One key handle
Dim vValue As String &apos; Key value
lRetVal = RegOpenKeyEx(BaseKey, sKeyName, 0, KEY_ALL_ACCESS, hKey)