Skip to content

Commit 38f6c75

Browse files
jbamptonPilot-Pirx
andauthored
Fix typos (#458)
* Fix typos * Regenerate ignored words list codespell.txt * Update cli_proxy.h * Update cli_proxy.h --------- Co-authored-by: Matthias Seidel <mseidel@apache.org>
1 parent c05f261 commit 38f6c75

28 files changed

Lines changed: 37 additions & 54 deletions

File tree

.github/linters/codespell.txt

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1368,23 +1368,8 @@ ininity
13681368
initiales
13691369
initialiase
13701370
initialisiert
1371-
initialistion
1372-
initializaing
1373-
initializaton
1374-
initializeing
13751371
initializong
1376-
initiallize
1377-
initiallized
1378-
initialy
1379-
initialzation
1380-
initialze
1381-
initialzed
1382-
initilization
1383-
initilized
1384-
initilizing
1385-
inititialize
13861372
inituialization
1387-
inivisible
13881373
inizialize
13891374
inizializes
13901375
inlcuded
@@ -2782,7 +2767,6 @@ vailable
27822767
valide
27832768
valie
27842769
valu
2785-
valuie
27862770
valus
27872771
vanishs
27882772
variabel
@@ -2791,7 +2775,6 @@ variablen
27912775
varian
27922776
variante
27932777
varibale
2794-
variuos
27952778
vas
27962779
vaue
27972780
vefiry

main/accessibility/java/java_uno_accessbridge/src/main/java/org/openoffice/java/accessibility/AccessibleObjectFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ public static java.awt.Window getTopWindow(XAccessible xAccessible) {
526526
w.setFocusTraversalPolicy(focusTraversalPolicy);
527527
w.setVisible(true);
528528

529-
// Make the new window the focused one if it has an initialy focused object set.
529+
// Make the new window the focused one if it has an initially focused object set.
530530
java.awt.Component c = ((NativeFrame) w).getInitialComponent();
531531
if (c != null) {
532532
postWindowGainedFocus(w);

main/cli_ure/source/uno_bridge/cli_proxy.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -265,9 +265,9 @@ struct CliProxy: public uno_Interface
265265
first call. In all ensuing calls the MethodInfo object is immediately
266266
retrieved through the mapping table.
267267
268-
If the interface has more then one interface in its inheritance chain,
269-
that is Type.GetInterfaces return more then one Type, then the mapping
270-
table is partially initiallized. On the first call the mappings for the
268+
If the interface has more than one interface in its inheritance chain,
269+
that is Type.GetInterfaces returns more than one Type, then the mapping
270+
table is partially initialized. On the first call the mappings for the
271271
methods of the belonging interface are created.
272272
273273
The implementation assumes that the order of interface methods as

main/connectivity/inc/connectivity/CommonTools.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ namespace connectivity
118118

119119
};
120120
// -------------------------------------------------------------------------
121-
// class ORowVector incudes refcounting and initialze himself
121+
// class ORowVector includes refcounting and initialize himself
122122
// with at least one element. This first element is reserved for
123123
// the bookmark
124124
// -------------------------------------------------------------------------

main/dbaccess/qa/complex/dbaccess/DatabaseDocument.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ public void testLoadable() throws Exception, IOException
417417
assertEquals("wrong URL after loading the document", documentURL, databaseDoc.getURL());
418418
impl_checkDocumentInitState(databaseDoc, true);
419419

420-
// and while we are here ... initilizing the same document again should not be possible
420+
// and while we are here ... initializing the same document again should not be possible
421421
assureException( databaseDoc, XLoadable.class, "initNew", new Object[0],
422422
DoubleInitializationException.class );
423423
assureException( databaseDoc, XLoadable.class, "load", new Object[] { new PropertyValue[0] },

main/dtrans/source/win32/mtaole/MtaOleClipb.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ class CAutoComInit
235235

236236
if ( S_OK == m_hResult )
237237
OSL_ENSURE( sal_False, \
238-
"com was not yet initialzed, the thread was not created using osl_createThread" );
238+
"com was not yet initialized, the thread was not created using osl_createThread" );
239239
else if ( FAILED( m_hResult ) && !( RPC_E_CHANGED_MODE == m_hResult ) )
240240
OSL_ENSURE( sal_False, \
241241
"com could not be initialized, maybe the thread was not created using osl_createThread" );

main/fpicker/source/win32/filepicker/PreviewCtrl.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class CAutoOleInit
7373
public:
7474

7575
// used to communicate ole
76-
// initialzation failures
76+
// initialization failures
7777
class COleInitException { };
7878

7979
CAutoOleInit( )

main/framework/inc/helper/statusindicator.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ namespace framework{
7070
*/
7171
class StatusIndicator : public css::lang::XTypeProvider
7272
, public css::task::XStatusIndicator
73-
, private ThreadHelpBase // Order of baseclasses is necessary for right initializaton!
73+
, private ThreadHelpBase // Order of baseclasses is necessary for right initialization!
7474
, public ::cppu::OWeakObject // => XInterface
7575
{
7676
//-------------------------------------------

main/framework/inc/helper/statusindicatorfactory.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ class StatusIndicatorFactory : public css::lang::XTypeProvider
292292
@descr By default we show the parent window automatically
293293
if this progress is used.
294294
If that isn't a valid operation, the user of this
295-
progress can suppress this feature by initializaing
295+
progress can suppress this feature by initializing
296296
us with a special parameter.
297297
298298
@seealso initialize()

main/framework/inc/macros/xserviceinfo.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ namespace framework{
6666
1) DECLARE_XSERVICEINFO => use it to declare XServiceInfo in your header
6767
2) DEFINE_XSERVICEINFO_MULTISERVICE( CLASS, XINTERFACECAST, SERVICENAME, IMPLEMENTATIONNAME ) => use it to define XServiceInfo for multi service mode
6868
3) DEFINE_XSERVICEINFO_ONEINSTANCESERVICE( CLASS, XINTERFACECAST, SERVICENAME, IMPLEMENTATIONNAME ) => use it to define XServiceInfo for one instance service mode
69-
4) DEFINE_INIT_SERVICE( CLASS ) => use it to implement your own impl_initService() method, which is necessary for initializeing object by using his own reference!
69+
4) DEFINE_INIT_SERVICE( CLASS ) => use it to implement your own impl_initService() method, which is necessary for initializing object by using his own reference!
7070
7171
_________________________________________________________________________________________________________________*/
7272

0 commit comments

Comments
 (0)