[Libreoffice-commits] core.git: forms/source

Julien Nabet serval2412 at yahoo.fr
Thu Jun 13 11:52:59 PDT 2013


 forms/source/xforms/convert.cxx |    8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

New commits:
commit 00c9fe2cfc2ac94a26dc565525abc98f581e8bc3
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Thu Jun 13 20:52:19 2013 +0200

    cppcheck: fix reassignments
    
    Change-Id: Ic9a994ccd00f4ca938a93bce000313495f2c31c8

diff --git a/forms/source/xforms/convert.cxx b/forms/source/xforms/convert.cxx
index 6dac929..285b3a7 100644
--- a/forms/source/xforms/convert.cxx
+++ b/forms/source/xforms/convert.cxx
@@ -276,11 +276,9 @@ namespace
     // ------------------------------------------------------------------------
     UNODate lcl_toUNODate( const OUString& rString )
     {
-        bool bWellformed = true;
-
         UNODate aDate( 1, 1, 1900 );
 
-        bWellformed = ISO8601parseDate(rString, aDate);
+        bool bWellformed = ISO8601parseDate(rString, aDate);
 
         // sanity checks
         if ( ( aDate.Year > 9999 ) || ( aDate.Month < 1 ) || ( aDate.Month > 12 ) || ( aDate.Day < 1 ) || ( aDate.Day > 31 ) )
@@ -340,11 +338,9 @@ namespace
     // ------------------------------------------------------------------------
     UNOTime lcl_toUNOTime( const OUString& rString )
     {
-        bool bWellformed = true;
-
         UNOTime aTime( 0, 0, 0, 0 );
 
-        bWellformed = ISO8601parseTime(rString, aTime);
+        bool bWellformed = ISO8601parseTime(rString, aTime);
 
         // sanity checks
         // note that Seconds == 60 denotes leap seconds. Normally, they're not allowed everywhere,


More information about the Libreoffice-commits mailing list