From be053c9a80ad237afc6da0b4174e1c7afc94ed92 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Fri, 20 Dec 2013 23:24:56 +0200 Subject: Spelling correction: s/retrive/retrieve/ Change-Id: I96845d358765e2d2507763a9b15a30388b32bc6b --- sal/qa/osl/file/osl_File.cxx | 6 +++--- sal/qa/osl/security/osl_Security.cxx | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'sal/qa') 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 ); -- cgit