Skip to content

Commit 46e1ba8

Browse files
jbamptonPilot-Pirx
authored andcommitted
misc: fix spelling (#459)
* misc: fix spelling * Regenerate ignored words list codespell.txt (cherry picked from commit 6ed76c6)
1 parent 15a3668 commit 46e1ba8

16 files changed

Lines changed: 20 additions & 20 deletions

File tree

main/autodoc/source/cosv/fullcpp.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525

2626
# --- Settings -----------------------------------------------------
27-
# Has to be inlcuded AFTER settings.mk !
27+
# Has to be included AFTER settings.mk !
2828

2929

3030
.IF "$(GUI)"=="WNT"

main/extensions/source/ole/oleobjw.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1248,7 +1248,7 @@ void SAL_CALL IUnknownWrapper_Impl::initialize( const Sequence< Any >& aArgument
12481248
catch( Exception& e )
12491249
{
12501250
throw RuntimeException(
1251-
OUSTR("[automation bridge] unexpected exception in IUnknownWrapper_Impl::initialiase() error message: \n") + e.Message,
1251+
OUSTR("[automation bridge] unexpected exception in IUnknownWrapper_Impl::initialize() error message: \n") + e.Message,
12521252
Reference<XInterface>() );
12531253
}
12541254
}

main/odk/examples/DevelopersGuide/GUI/UnoMenu.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public XTopWindow showTopWindow( Rectangle _aRectangle){
128128

129129
// set up a window description and create the window. A parent window is always necessary for this...
130130
com.sun.star.awt.WindowDescriptor aWindowDescriptor = new com.sun.star.awt.WindowDescriptor();
131-
// a TopWindow is contains a title bar and is able to inlude menus...
131+
// a TopWindow is contains a title bar and is able to include menus...
132132
aWindowDescriptor.Type = WindowClass.TOP;
133133
// specify the position and height of the window on the parent window
134134
aWindowDescriptor.Bounds = _aRectangle;

main/qadevOOo/tests/java/ifc/text/_TextGraphicObject.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
* </ul> <p>
6262
* This test needs the following object relations :
6363
* <ul>
64-
* <li> <code>'ImageMap'</code> (an inmplementation of
64+
* <li> <code>'ImageMap'</code> (an implementation of
6565
* <code>com.sun.star.image.ImageMapObject</code>):
6666
* is used to insert a new Map into collection
6767
* from 'ImageMap' property. </li>

main/rsc/source/prj/start.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ static sal_Bool CallRsc2( ByteString aRsc2Name,
238238
|| !rsc_stricmp( (char *)pCmdLine->GetEntry( i ), "-br" )
239239
|| !rsc_stricmp( (char *)pCmdLine->GetEntry( i ), "-bz" )
240240
|| !rsc_stricmp( (char *)pCmdLine->GetEntry( i ), "-r" )
241-
// Am I the only one that thinks the following line inludes all the tests before?
241+
// Am I the only one that thinks the following line includes all the tests before?
242242
|| ( '-' != *(char *)pCmdLine->GetEntry( i ) ) )
243243
{
244244
}

main/sal/osl/os2/thread.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ static void oslWorkerWrapperFunction(void* pData)
102102
#if OSL_DEBUG_LEVEL>0
103103
printf("oslWorkerWrapperFunction pThreadImpl %x, pThreadImpl->m_ThreadId %d\n", pThreadImpl, pThreadImpl->m_ThreadId);
104104
#endif
105-
/* Inizialize PM for this thread */
105+
/* Initialize PM for this thread */
106106
pThreadImpl->m_hab = WinInitialize( 0 );
107107
#if OSL_DEBUG_LEVEL>0
108108
printf("pThreadImpl->m_ThreadId %d, pThreadImpl->m_hab %x\n", pThreadImpl->m_ThreadId,pThreadImpl->m_hab);

main/sal/qa/rtl/ostring/rtl_str.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ namespace rtl_str
111111
rtl::OString aStr2 = "LINE MUST BE EQUAL.";
112112

113113
sal_Int32 nValue = rtl_str_compareIgnoreAsciiCase( aStr1.getStr(), aStr2.getStr());
114-
ASSERT_TRUE(nValue == 0) << "compare failed, strings are equal (if case insensitve).";
114+
ASSERT_TRUE(nValue == 0) << "compare failed, strings are equal (if case insensitive).";
115115
}
116116

117117
TEST_F(compareIgnoreAsciiCase, compare_003)
@@ -167,7 +167,7 @@ namespace rtl_str
167167
sal_Int32 nValue = rtl_str_shortenedCompareIgnoreAsciiCase_WithLength( aStr1.getStr(), aStr1.getLength(),
168168
aStr2.getStr(), aStr2.getLength(),
169169
aStr1.getLength());
170-
ASSERT_TRUE(nValue == 0) << "compare failed, strings are equal (if case insensitve).";
170+
ASSERT_TRUE(nValue == 0) << "compare failed, strings are equal (if case insensitive).";
171171
}
172172

173173
TEST_F(shortenedCompareIgnoreAsciiCase_WithLength, compare_003)

main/sal/qa/rtl/oustring/rtl_ustr.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ namespace rtl_ustr
125125
rtl::OUString aStr2 = rtl::OUString::createFromAscii("LINE MUST BE EQUAL.");
126126

127127
sal_Int32 nValue = rtl_ustr_compareIgnoreAsciiCase( aStr1.getStr(), aStr2.getStr());
128-
ASSERT_TRUE(nValue == 0) << "compare failed, strings are equal (if case insensitve).";
128+
ASSERT_TRUE(nValue == 0) << "compare failed, strings are equal (if case insensitive).";
129129
}
130130

131131
TEST_F(compareIgnoreAsciiCase, compare_003)
@@ -181,7 +181,7 @@ namespace rtl_ustr
181181
sal_Int32 nValue = rtl_ustr_shortenedCompareIgnoreAsciiCase_WithLength( aStr1.getStr(), aStr1.getLength(),
182182
aStr2.getStr(), aStr2.getLength(),
183183
aStr1.getLength());
184-
ASSERT_TRUE(nValue == 0) << "compare failed, strings are equal (if case insensitve).";
184+
ASSERT_TRUE(nValue == 0) << "compare failed, strings are equal (if case insensitive).";
185185
}
186186

187187
TEST_F(shortenedCompareIgnoreAsciiCase_WithLength, compare_003)
@@ -1008,7 +1008,7 @@ namespace rtl_ustr
10081008
rtl::OString sStr2 = "LINE MUST BE EQUAL, WHEN IGNORE CASE.";
10091009

10101010
sal_Int32 nValue = rtl_ustr_ascii_compareIgnoreAsciiCase( suStr1.getStr(), sStr2.getStr());
1011-
ASSERT_TRUE(nValue == 0) << "compare failed, strings are equal (if case insensitve).";
1011+
ASSERT_TRUE(nValue == 0) << "compare failed, strings are equal (if case insensitive).";
10121012
}
10131013

10141014
TEST_F(ascii_compareIgnoreAsciiCase, ascii_compareIgnoreAsciiCase_003)
@@ -1092,7 +1092,7 @@ namespace rtl_ustr
10921092
rtl::OString sStr2 = "LINE MUST BE EQUAL, WHEN IGNORE CASE.";
10931093

10941094
sal_Int32 nValue = rtl_ustr_ascii_compareIgnoreAsciiCase( suStr1.getStr(), sStr2.getStr());
1095-
ASSERT_TRUE(nValue == 0) << "compare failed, strings are equal (if case insensitve).";
1095+
ASSERT_TRUE(nValue == 0) << "compare failed, strings are equal (if case insensitive).";
10961096
}
10971097

10981098
TEST_F(getToken, ascii_compareIgnoreAsciiCase_003)

main/sc/source/filter/inc/xiview.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ private:
5353
/** Contains all view settings for a single sheet.
5454
5555
Usage:
56-
1) When import filter starts reading a worksheet substream, inizialize an
56+
1) When import filter starts reading a worksheet substream, initialize an
5757
instance of this class with the Initialize() function. This will set
5858
all view options to Excel default values.
5959
2) Read all view related records using the Read*() functions.

main/slideshow/source/engine/OGLTrans/OGLTrans_TransitionImpl.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ public:
290290
Operation(){}
291291
virtual ~Operation(){}
292292

293-
/** Should this operation be interpolated . If TRUE, the transform will smoothly move from making no difference from t = 0.0 to nT0 to being completely transformed from t = nT1 to 1. If FALSE, the transform will be inneffectual from t = 0 to nT0, and completely transformed from t = nT0 to 1.
293+
/** Should this operation be interpolated . If TRUE, the transform will smoothly move from making no difference from t = 0.0 to nT0 to being completely transformed from t = nT1 to 1. If FALSE, the transform will be ineffectual from t = 0 to nT0, and completely transformed from t = nT0 to 1.
294294
*/
295295
bool bInterpolate;
296296

0 commit comments

Comments
 (0)