diff options
-rw-r--r-- | fpicker/source/win32/filepicker/controlcommand.cxx | 4 | ||||
-rw-r--r-- | l10ntools/source/common.cxx | 4 | ||||
-rw-r--r-- | sd/source/ui/table/TableDesignPane.cxx | 2 | ||||
-rw-r--r-- | svl/source/misc/filenotation.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/text/txtimppr.cxx | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/fpicker/source/win32/filepicker/controlcommand.cxx b/fpicker/source/win32/filepicker/controlcommand.cxx index 33518470c5b4..222bb1960bc2 100644 --- a/fpicker/source/win32/filepicker/controlcommand.cxx +++ b/fpicker/source/win32/filepicker/controlcommand.cxx @@ -50,7 +50,7 @@ CControlCommandResult* SAL_CALL CControlCommand::handleRequest( CControlCommandR // redirect the request to the next element // so the base class implementation has to do it - OSL_ENSURE( pRequest, "inavlid parameter" ); + OSL_ENSURE( pRequest, "invalid parameter" ); CControlCommandResult* result; CControlCommand* nextCommand; @@ -206,7 +206,7 @@ void SAL_CALL CLabelControlCommand::exec( CFilePickerState* aFilePickerState ) CControlCommandResult* SAL_CALL CLabelControlCommand::handleRequest( CControlCommandRequest* aRequest ) { - OSL_ENSURE( aRequest, "inavlid parameter" ); + OSL_ENSURE( aRequest, "invalid parameter" ); CControlCommandResult* result; CControlCommand* nextCommand; diff --git a/l10ntools/source/common.cxx b/l10ntools/source/common.cxx index b143a7c8e4cf..db86845ac787 100644 --- a/l10ntools/source/common.cxx +++ b/l10ntools/source/common.cxx @@ -94,7 +94,7 @@ void writeUsage(const OString& rName, const OString& rFileType) << " FileIn: Source files (" << rFileType.getStr() << ")\n" << " FileOut: Destination file (*.*)\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"; } @@ -116,7 +116,7 @@ void writePoEntry( } 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) { std::cerr << "No groupID specified!\n"; diff --git a/sd/source/ui/table/TableDesignPane.cxx b/sd/source/ui/table/TableDesignPane.cxx index 8e44325f4a99..b02617702396 100644 --- a/sd/source/ui/table/TableDesignPane.cxx +++ b/sd/source/ui/table/TableDesignPane.cxx @@ -617,7 +617,7 @@ struct TableStyleSettings 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 { rVector.resize( sdr::table::style_count ); diff --git a/svl/source/misc/filenotation.cxx b/svl/source/misc/filenotation.cxx index 1b7dee2067b5..b7b40144004a 100644 --- a/svl/source/misc/filenotation.cxx +++ b/svl/source/misc/filenotation.cxx @@ -125,7 +125,7 @@ namespace svt case N_URL: return m_sFileURL; } - OSL_FAIL("OFileNotation::get: inavlid enum value!"); + OSL_FAIL("OFileNotation::get: invalid enum value!"); return OUString(); } diff --git a/xmloff/source/text/txtimppr.cxx b/xmloff/source/text/txtimppr.cxx index a5f49f0b1881..306ebb19f8db 100644 --- a/xmloff/source/text/txtimppr.cxx +++ b/xmloff/source/text/txtimppr.cxx @@ -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 // invalidated!!! |