[Libreoffice-commits] core.git: fpicker/source l10ntools/source sd/source svl/source xmloff/source

Andras Timar atimar at suse.com
Tue May 14 07:50:15 PDT 2013


 fpicker/source/win32/filepicker/controlcommand.cxx |    4 ++--
 l10ntools/source/common.cxx                        |    4 ++--
 sd/source/ui/table/TableDesignPane.cxx             |    2 +-
 svl/source/misc/filenotation.cxx                   |    2 +-
 xmloff/source/text/txtimppr.cxx                    |    2 +-
 5 files changed, 7 insertions(+), 7 deletions(-)

New commits:
commit e347af862c2289b16f231c9085492e913861e347
Author: Andras Timar <atimar at suse.com>
Date:   Tue May 14 15:51:42 2013 +0200

    typo fix: s/inavlid/invalid/
    
    Change-Id: If75cad038f35033be6dcad6f051673bd795accf3

diff --git a/fpicker/source/win32/filepicker/controlcommand.cxx b/fpicker/source/win32/filepicker/controlcommand.cxx
index 3351847..222bb19 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 b143a7c..db86845 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 8e44325..b026177 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 1b7dee2..b7b4014 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 a5f49f0..306ebb1 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!!!
 


More information about the Libreoffice-commits mailing list