Kaydet (Commit) e3f14132 authored tarafından Julien Nabet's avatar Julien Nabet

Fix typos retreive/retrieve furture/future

Change-Id: I639c2970b2a88ca3d5aa1dcd2ad4ec047b4a369c
üst fcf3758c
......@@ -78,7 +78,7 @@ extern "C" int APIENTRY _tWinMain( HINSTANCE, HINSTANCE, LPTSTR, int )
}
FreeLibrary(hinstDll);
// Retreive startup info
// Retrieve startup info
STARTUPINFO aStartupInfo;
......
......@@ -64,7 +64,7 @@
extern "C" int Main()
{
// Retreive startup info
// Retrieve startup info
STARTUPINFO aStartupInfo;
......@@ -94,7 +94,7 @@ extern "C" int Main()
_tsplitpath( szApplicationName, szDrive, szDir, szFileName, szExt );
_tmakepath( szApplicationName, szDrive, szDir, szFileName, BIN_EXT_STR );
// Retreive actual environment
// Retrieve actual environment
TCHAR szBuffer[1024];
TCHAR szPathValue[1024] = TEXT("");
......
......@@ -1242,7 +1242,7 @@ void ToolbarLayoutManager::implts_reparentToolbars()
uno::Reference< awt::XWindow > xWindow;
try
{
// We have to retreive the window reference with try/catch as it is
// We have to retrieve the window reference with try/catch as it is
// possible that all elements have been disposed!
xWindow = uno::Reference< awt::XWindow >( xUIElement->getRealInterface(), uno::UNO_QUERY );
}
......
......@@ -214,11 +214,11 @@ typedef struct _NPNetscapeFuncs {
#ifdef XP_MACOSX
/*
* Mac OS X version(s) of NP_GetMIMEDescription(const char *)
* These can be called to retreive MIME information from the plugin dynamically
* These can be called to retrieve MIME information from the plugin dynamically
*
* Note: For compatibility with Quicktime, BPSupportedMIMEtypes is another way
* to get mime info from the plugin only on OSX and may not be supported
* in furture version -- use NP_GetMIMEDescription instead
* in future version -- use NP_GetMIMEDescription instead
*/
enum
{
......
......@@ -1161,11 +1161,11 @@ typedef NPError (* NP_LOADDS NPP_MainEntryUPP)(NPNetscapeFuncs*, NPPluginFuncs*,
/*
* Mac version(s) of NP_GetMIMEDescription(const char *)
* These can be called to retreive MIME information from the plugin dynamically
* These can be called to retrieve MIME information from the plugin dynamically
*
* Note: For compatibility with Quicktime, BPSupportedMIMEtypes is another way
* to get mime info from the plugin only on OSX and may not be supported
* in furture version--use NP_GetMIMEDescription instead
* in future version--use NP_GetMIMEDescription instead
*/
enum
......
......@@ -361,7 +361,7 @@ typedef enum {
#define osl_File_Attribute_OthRead 0x00001000
#define osl_File_Attribute_OthExe 0x00002000
/* Flags specifying which fields to retreive by osl_getFileStatus */
/* Flags specifying which fields to retrieve by osl_getFileStatus */
#define osl_FileStatus_Mask_Type 0x00000001
#define osl_FileStatus_Mask_Attributes 0x00000002
......@@ -545,7 +545,7 @@ SAL_DLLPUBLIC oslFileError SAL_CALL osl_getVolumeDeviceMountPath(
#define osl_Volume_Attribute_Case_Is_Preserved 0x00000040L
#define osl_Volume_Attribute_Case_Sensitive 0x00000080L
/* Flags specifying which fields to retreive by osl_getVolumeInfo */
/* Flags specifying which fields to retrieve by osl_getVolumeInfo */
#define osl_VolumeInfo_Mask_Attributes 0x00000001L
#define osl_VolumeInfo_Mask_TotalSpace 0x00000002L
......
......@@ -1329,10 +1329,10 @@ void ScFiltersTest::testChartImportODS()
ScDrawLayer* pDrawLayer = pDoc->GetDrawLayer();
CPPUNIT_ASSERT_MESSAGE("Failed to retrieve the drawing layer object.", pDrawLayer);
const SdrPage* pPage = pDrawLayer->GetPage(1); // for the 2nd sheet.
CPPUNIT_ASSERT_MESSAGE("Failed to retreive the page object.", pPage);
CPPUNIT_ASSERT_MESSAGE("Failed to retrieve the page object.", pPage);
CPPUNIT_ASSERT_MESSAGE("This page should contain one drawing object.", pPage->GetObjCount() == 1);
const SdrObject* pObj = pPage->GetObj(0);
CPPUNIT_ASSERT_MESSAGE("Failed to retreive the drawing object.", pObj);
CPPUNIT_ASSERT_MESSAGE("Failed to retrieve the drawing object.", pObj);
CPPUNIT_ASSERT_MESSAGE("This is not an OLE2 object.", pObj->GetObjIdentifier() == OBJ_OLE2);
const SdrOle2Obj& rOleObj = static_cast<const SdrOle2Obj&>(*pObj);
CPPUNIT_ASSERT_MESSAGE("This should be a chart object.", rOleObj.IsChart());
......
......@@ -1045,7 +1045,7 @@ sal_Bool Content::isFolder()
ucbhelper::cancelCommandExecution(
makeAny( UnknownPropertyException(
rtl::OUString(
"Unable to retreive value of property 'IsFolder'!" ),
"Unable to retrieve value of property 'IsFolder'!" ),
get() ) ),
m_xImpl->getEnvironment() );
......@@ -1066,7 +1066,7 @@ sal_Bool Content::isDocument()
ucbhelper::cancelCommandExecution(
makeAny( UnknownPropertyException(
rtl::OUString(
"Unable to retreive value of property 'IsDocument'!" ),
"Unable to retrieve value of property 'IsDocument'!" ),
get() ) ),
m_xImpl->getEnvironment() );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment