diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-12-20 23:24:56 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2013-12-20 23:26:58 +0200 |
commit | be053c9a80ad237afc6da0b4174e1c7afc94ed92 (patch) | |
tree | 94fe4823ec33e39359006c986372c5caceb85db0 /sal/qa | |
parent | d1ae39e484f888ddcca15f584cddd2b3ccae1024 (diff) |
Spelling correction: s/retrive/retrieve/
Change-Id: I96845d358765e2d2507763a9b15a30388b32bc6b
Diffstat (limited to 'sal/qa')
-rw-r--r-- | sal/qa/osl/file/osl_File.cxx | 6 | ||||
-rw-r--r-- | sal/qa/osl/security/osl_Security.cxx | 12 |
2 files changed, 9 insertions, 9 deletions
diff --git a/sal/qa/osl/file/osl_File.cxx b/sal/qa/osl/file/osl_File.cxx index 11ce5ecaa06b..1da398aeac71 100644 --- a/sal/qa/osl/file/osl_File.cxx +++ b/sal/qa/osl/file/osl_File.cxx @@ -5579,7 +5579,7 @@ namespace osl_Directory nError1 = testDirectory.close(); CPPUNIT_ASSERT( ::osl::FileBase::E_None == nError1 ); - CPPUNIT_ASSERT_MESSAGE( "test for getNextItem function: retrive three items and check their names.", + CPPUNIT_ASSERT_MESSAGE( "test for getNextItem function: retrieve three items and check their names.", ( sal_True == bOk1 ) && ( sal_True == bOk2 ) && ( sal_True == bOk3 ) ); } @@ -5588,7 +5588,7 @@ namespace osl_Directory ::osl::Directory testDirectory( aTmpName3 ); //constructor nError1 = testDirectory.getNextItem( rItem ); - CPPUNIT_ASSERT_MESSAGE( "test for getNextItem function: retrive an item in a directory which is not opened, also test for nHint's default value.", + CPPUNIT_ASSERT_MESSAGE( "test for getNextItem function: retrieve an item in a directory which is not opened, also test for nHint's default value.", ( ::osl::FileBase::E_INVAL == nError1 ) ); } @@ -5609,7 +5609,7 @@ namespace osl_Directory nError1 = testDirectory.close(); CPPUNIT_ASSERT( ::osl::FileBase::E_None == nError1 ); - CPPUNIT_ASSERT_MESSAGE( "test for getNextItem function: retrive 4 times in a directory which contain only 3 files.", + CPPUNIT_ASSERT_MESSAGE( "test for getNextItem function: retrieve 4 times in a directory which contain only 3 files.", ( ::osl::FileBase::E_NOENT == nError2 ) ); } diff --git a/sal/qa/osl/security/osl_Security.cxx b/sal/qa/osl/security/osl_Security.cxx index 6fb065ad91af..f24d404c4114 100644 --- a/sal/qa/osl/security/osl_Security.cxx +++ b/sal/qa/osl/security/osl_Security.cxx @@ -583,35 +583,35 @@ void MyTestPlugInImpl::initialize( CPPUNIT_NS::TestFactoryRegistry *, #endif /// print the information. - t_print("#\n#Retrived system information is below:\n"); + t_print("#\n#Retrieved system information is below:\n"); t_print("Computer Name: "); if ( strComputerName.isEmpty()) - t_print("Not retrived\n" ); + t_print("Not retrieved\n" ); else printUString( strComputerName ); t_print("Current User Name: "); if ( strUserName.isEmpty()) - t_print("Not retrived\n" ); + t_print("Not retrieved\n" ); else printUString( strUserName ); t_print("Current User Home Directory:"); if ( strHomeDirectory.isEmpty()) - t_print("Not retrived\n" ); + t_print("Not retrieved\n" ); else printUString( strHomeDirectory ); t_print("Current Config Directory: "); if ( strConfigDirectory.isEmpty()) - t_print("Not retrived\n" ); + t_print("Not retrieved\n" ); else printUString( strConfigDirectory ); t_print("Current UserID: "); if ( strUserID.isEmpty()) - t_print("Not retrived\n" ); + t_print("Not retrieved\n" ); else printUString( strUserID ); |