diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2014-11-10 15:05:25 +0100 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2014-11-12 11:04:11 +0000 |
commit | da40cac540e7d735edbe9069b3c8ec6af4530208 (patch) | |
tree | f2abda7281129e13f588c77b18780a7090c8405f /wizards | |
parent | bb437029c1e5331bcc3f8fb2fc87837142a52f33 (diff) |
Fix common typos. No automatic tools. Handmade…
Change-Id: I1ab4e23b0539f8d39974787f226e57a21f96e959
Reviewed-on: https://gerrit.libreoffice.org/12164
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'wizards')
9 files changed, 12 insertions, 12 deletions
diff --git a/wizards/com/sun/star/wizards/agenda/AgendaDocument.py b/wizards/com/sun/star/wizards/agenda/AgendaDocument.py index 0bcb30fd08e8..f28cb9470325 100644 --- a/wizards/com/sun/star/wizards/agenda/AgendaDocument.py +++ b/wizards/com/sun/star/wizards/agenda/AgendaDocument.py @@ -175,7 +175,7 @@ class AgendaDocument(TextDocument): raise ValueError("No such item") '''itemsCache is a Map containing all agenda item. These are object which - "write themselfs" to the table, given a table cursor. + "write themselves" to the table, given a table cursor. A cache is used in order to reuse the objects, instead of recreate them. This method fills the cache will all items objects (names and headings). ''' diff --git a/wizards/com/sun/star/wizards/db/TypeInspector.java b/wizards/com/sun/star/wizards/db/TypeInspector.java index 336df758b752..277c72158103 100644 --- a/wizards/com/sun/star/wizards/db/TypeInspector.java +++ b/wizards/com/sun/star/wizards/db/TypeInspector.java @@ -405,7 +405,7 @@ public class TypeInspector *4) DOUBLE *5) NUMERIC *6) DECIMAL * - * If no appropriate datatype is found ther first available numeric type after DataType.INTEGER + * If no appropriate datatype is found the first available numeric type after DataType.INTEGER * according to the 'convertDataType' method is returned */ /**TODO the fallback order is the same as implemented in the method 'convertDataType'. diff --git a/wizards/com/sun/star/wizards/report/ReportTextDocument.java b/wizards/com/sun/star/wizards/report/ReportTextDocument.java index 569b03456f7d..c761d244ab89 100644 --- a/wizards/com/sun/star/wizards/report/ReportTextDocument.java +++ b/wizards/com/sun/star/wizards/report/ReportTextDocument.java @@ -363,7 +363,7 @@ class ReportTextDocument extends com.sun.star.wizards.text.TextDocument implemen public void replaceFieldValueInGroupTable(DBColumn CurDBColumn, int TableIndex) { String TableName = TBLGROUPSECTION + (TableIndex + 1); - // Note: for some reason the table might lose its name and has to be renamed therefor + // Note: for some reason the table might lose its name and has to be renamed therefore String OldTableName = CurDBColumn.xTableName.getName(); if (OldTableName.compareTo(TableName) != 0) { diff --git a/wizards/com/sun/star/wizards/reportbuilder/layout/ReportBuilderLayouter.java b/wizards/com/sun/star/wizards/reportbuilder/layout/ReportBuilderLayouter.java index fa932e828ae8..77b1791310c9 100644 --- a/wizards/com/sun/star/wizards/reportbuilder/layout/ReportBuilderLayouter.java +++ b/wizards/com/sun/star/wizards/reportbuilder/layout/ReportBuilderLayouter.java @@ -1350,7 +1350,7 @@ abstract public class ReportBuilderLayouter implements IReportBuilderLayouter // 'Page #page# of #count#' // to something like // '\"Page \" & PageNumber() & \" of \" & PageCount()' - // due to the fact that is is not fixed, where #page# or #count# occurs, we make it + // due to the fact that it is not fixed, where #page# or #count# occurs, we make it // a little bit trickier. // we first surround the string with double quotes, // second, replace the #...# diff --git a/wizards/com/sun/star/wizards/ui/DocumentPreview.py b/wizards/com/sun/star/wizards/ui/DocumentPreview.py index d358ad49937b..4c6aed5f054d 100644 --- a/wizards/com/sun/star/wizards/ui/DocumentPreview.py +++ b/wizards/com/sun/star/wizards/ui/DocumentPreview.py @@ -69,7 +69,7 @@ class DocumentPreview(object): ''' create a new frame with a new container window inside, - which isnt part of the global frame tree. + which is not part of the global frame tree. Attention: a) This frame wont be destroyed by the office. It must be closed by you! diff --git a/wizards/com/sun/star/wizards/web/Process.py b/wizards/com/sun/star/wizards/web/Process.py index 3502b58492f9..530b979b5e9c 100644 --- a/wizards/com/sun/star/wizards/web/Process.py +++ b/wizards/com/sun/star/wizards/web/Process.py @@ -493,7 +493,7 @@ class Process(ProcessErrors): try: # here I calculate the destination filename. - # I take the original filename (docFilename), substract the extension, (docExt) -> (fn) + # I take the original filename (docFilename), subtract the extension, (docExt) -> (fn) # and find an available filename which starts with # this filename, but with the new extension. (destExt) docFilename = FileAccess.getFilename(doc.cp_URL) diff --git a/wizards/com/sun/star/wizards/web/WWD_Startup.py b/wizards/com/sun/star/wizards/web/WWD_Startup.py index f5d6fcf2c78c..bbf35817723a 100644 --- a/wizards/com/sun/star/wizards/web/WWD_Startup.py +++ b/wizards/com/sun/star/wizards/web/WWD_Startup.py @@ -37,7 +37,7 @@ from ..ui.event.DataAware import DataAware from ..ui.event.Task import Task ''' -Web Wizard Dialog implementation : Startup. +Web Wizard Dialog implementation: Startup. This class contains the startup implementation and session mounting methods. <h2> Data Aware Concept </h2> <p> I use DataAware objects, which synchronize @@ -46,7 +46,7 @@ between a Value and a UI element. </P> <p> A Value is either a JavaBean property with -a Getter and a Setter or a public class Memeber. +a Getter and a Setter or a public class Member. </P> When the UI Control changes, the Value changes correspondingly. This depends on WWD_General.settings a Listener which calls the updateData() @@ -60,7 +60,7 @@ here I use only UI Listeners, and keep calling the updateUI() method whenever I change the Value. </P> To contain the Data, I use the Configuration Data Objects -which read themselfs out of the Configuration. they are all located under +which read themselves out of the Configuration. they are all located under the data package. <p/> Different groups of DataAware objects are grouped into vectors. diff --git a/wizards/source/access2base/Dialog.xba b/wizards/source/access2base/Dialog.xba index 6eed82aee805..a6d04d21fb1b 100644 --- a/wizards/source/access2base/Dialog.xba +++ b/wizards/source/access2base/Dialog.xba @@ -138,7 +138,7 @@ Dim ogGroup As Object, vGroup() As Variant, vIndex() As Variant If oRadios(i).TabIndex > oRadios(i - 1).TabIndex + 1 Then bFound = True Else - Goto Error_Arg ' same group as preceeding item although name correct + Goto Error_Arg ' same group as preceding item although name correct End If End Select If bFound Then @@ -659,4 +659,4 @@ Error_Function: _PropertySet = False GoTo Exit_Function End Function ' _PropertySet -</script:module>
\ No newline at end of file +</script:module> diff --git a/wizards/source/euro/euro.src b/wizards/source/euro/euro.src index 0f1b44b2584b..6883861dd1b9 100644 --- a/wizards/source/euro/euro.src +++ b/wizards/source/euro/euro.src @@ -217,7 +217,7 @@ Text [ en-US ] = "Select target directory"; String MESSAGES + 4 { -Text [ en-US ] = "non-existant"; +Text [ en-US ] = "non-existent"; }; String MESSAGES + 5 |