[Libreoffice-commits] core.git: oox/source
Norbert Thiebaud
nthiebaud at gmail.com
Fri Feb 22 09:39:28 PST 2013
oox/source/docprop/docprophandler.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit f9ec3b34774c0f5822b42a49a28447c5e888de41
Author: Norbert Thiebaud <nthiebaud at gmail.com>
Date: Thu Feb 21 21:10:05 2013 -0600
coverity#736043 Missing break in switch
Change-Id: Ia75cc63035119f243e8145e982d1f5267078c1e8
Reviewed-on: https://gerrit.libreoffice.org/2323
Reviewed-by: Michael Stahl <mstahl at redhat.com>
Tested-by: Michael Stahl <mstahl at redhat.com>
diff --git a/oox/source/docprop/docprophandler.cxx b/oox/source/docprop/docprophandler.cxx
index 1067315..8ae78a7 100644
--- a/oox/source/docprop/docprophandler.cxx
+++ b/oox/source/docprop/docprophandler.cxx
@@ -614,7 +614,7 @@ void SAL_CALL OOXMLDocPropHandler::characters( const ::rtl::OUString& aChars )
case VT_TOKEN( date ):
case VT_TOKEN( filetime ):
AddCustomProperty( uno::makeAny( GetDateTimeFromW3CDTF( aChars ) ) );
-
+ break;
case VT_TOKEN( i1 ):
case VT_TOKEN( i2 ):
AddCustomProperty( uno::makeAny( (sal_Int16)aChars.toInt32() ) );
More information about the Libreoffice-commits
mailing list