Kaydet (Commit) e347af86 authored tarafından Andras Timar's avatar Andras Timar

typo fix: s/inavlid/invalid/

Change-Id: If75cad038f35033be6dcad6f051673bd795accf3
üst 833cafe4
...@@ -50,7 +50,7 @@ CControlCommandResult* SAL_CALL CControlCommand::handleRequest( CControlCommandR ...@@ -50,7 +50,7 @@ CControlCommandResult* SAL_CALL CControlCommand::handleRequest( CControlCommandR
// redirect the request to the next element // redirect the request to the next element
// so the base class implementation has to do it // so the base class implementation has to do it
OSL_ENSURE( pRequest, "inavlid parameter" ); OSL_ENSURE( pRequest, "invalid parameter" );
CControlCommandResult* result; CControlCommandResult* result;
CControlCommand* nextCommand; CControlCommand* nextCommand;
...@@ -206,7 +206,7 @@ void SAL_CALL CLabelControlCommand::exec( CFilePickerState* aFilePickerState ) ...@@ -206,7 +206,7 @@ void SAL_CALL CLabelControlCommand::exec( CFilePickerState* aFilePickerState )
CControlCommandResult* SAL_CALL CLabelControlCommand::handleRequest( CControlCommandRequest* aRequest ) CControlCommandResult* SAL_CALL CLabelControlCommand::handleRequest( CControlCommandRequest* aRequest )
{ {
OSL_ENSURE( aRequest, "inavlid parameter" ); OSL_ENSURE( aRequest, "invalid parameter" );
CControlCommandResult* result; CControlCommandResult* result;
CControlCommand* nextCommand; CControlCommand* nextCommand;
......
...@@ -94,7 +94,7 @@ void writeUsage(const OString& rName, const OString& rFileType) ...@@ -94,7 +94,7 @@ void writeUsage(const OString& rName, const OString& rFileType)
<< " FileIn: Source files (" << rFileType.getStr() << ")\n" << " FileIn: Source files (" << rFileType.getStr() << ")\n"
<< " FileOut: Destination file (*.*)\n" << " FileOut: Destination file (*.*)\n"
<< " DataBase: Mergedata (*.po)\n" << " DataBase: Mergedata (*.po)\n"
<< " Lang: Restrict the handled languag; one element of\n" << " Lang: Restrict the handled language; one element of\n"
<< " (de, en-US, ...) or all\n"; << " (de, en-US, ...) or all\n";
} }
...@@ -116,7 +116,7 @@ void writePoEntry( ...@@ -116,7 +116,7 @@ void writePoEntry(
} }
else else
{ {
std::cerr << rExecutable << " warning: inavlid po attributes extracted from " << rSourceFile << "\n"; std::cerr << rExecutable << " warning: invalid po attributes extracted from " << rSourceFile << "\n";
if(aException == PoEntry::NOGROUPID) if(aException == PoEntry::NOGROUPID)
{ {
std::cerr << "No groupID specified!\n"; std::cerr << "No groupID specified!\n";
......
...@@ -617,7 +617,7 @@ struct TableStyleSettings ...@@ -617,7 +617,7 @@ struct TableStyleSettings
static void FillCellInfoVector( const Reference< XIndexAccess >& xTableStyle, CellInfoVector& rVector ) static void FillCellInfoVector( const Reference< XIndexAccess >& xTableStyle, CellInfoVector& rVector )
{ {
DBG_ASSERT( xTableStyle.is() && (xTableStyle->getCount() == sdr::table::style_count ), "sd::FillCellInfoVector(), inavlid table style!" ); DBG_ASSERT( xTableStyle.is() && (xTableStyle->getCount() == sdr::table::style_count ), "sd::FillCellInfoVector(), invalid table style!" );
if( xTableStyle.is() ) try if( xTableStyle.is() ) try
{ {
rVector.resize( sdr::table::style_count ); rVector.resize( sdr::table::style_count );
......
...@@ -125,7 +125,7 @@ namespace svt ...@@ -125,7 +125,7 @@ namespace svt
case N_URL: return m_sFileURL; case N_URL: return m_sFileURL;
} }
OSL_FAIL("OFileNotation::get: inavlid enum value!"); OSL_FAIL("OFileNotation::get: invalid enum value!");
return OUString(); return OUString();
} }
......
...@@ -591,7 +591,7 @@ void XMLTextImportPropertyMapper::finished( ...@@ -591,7 +591,7 @@ void XMLTextImportPropertyMapper::finished(
} }
// insert newly created properties. This inavlidates all iterators! // insert newly created properties. This invalidates all iterators!
// Most of the pXXX variables in this method are iterators and will be // Most of the pXXX variables in this method are iterators and will be
// invalidated!!! // invalidated!!!
......
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