You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by pa...@apache.org on 2013/05/17 12:17:32 UTC

svn commit: r1483723 - /openoffice/trunk/main/cui/source/tabpages/tpline.cxx

Author: paveljanik
Date: Fri May 17 10:17:32 2013
New Revision: 1483723

URL: http://svn.apache.org/r1483723
Log:
Use default case instead of handling a "meta" value.

Modified:
    openoffice/trunk/main/cui/source/tabpages/tpline.cxx

Modified: openoffice/trunk/main/cui/source/tabpages/tpline.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/cui/source/tabpages/tpline.cxx?rev=1483723&r1=1483722&r2=1483723&view=diff
==============================================================================
--- openoffice/trunk/main/cui/source/tabpages/tpline.cxx (original)
+++ openoffice/trunk/main/cui/source/tabpages/tpline.cxx Fri May 17 10:17:32 2013
@@ -1344,8 +1344,7 @@ void SvxLineTabPage::Reset( const SfxIte
 			case com::sun::star::drawing::LineJoint_NONE : maLBEdgeStyle.SelectEntryPos(1); break;
 			case com::sun::star::drawing::LineJoint_MITER : maLBEdgeStyle.SelectEntryPos(2); break;
 			case com::sun::star::drawing::LineJoint_BEVEL : maLBEdgeStyle.SelectEntryPos(3); break;
-			// Not handled?
-			case com::sun::star::drawing::LineJoint_MAKE_FIXED_SIZE : break;
+			default: break;
 		}
 	}
 	else