Author: paveljanik
Date: Fri May 17 05:25:47 2013
New Revision: 1483649
URL: http://svn.apache.org/r1483649
Log:
Add missing case for LineJoint_MAKE_FIXED_SIZE to prevent compiler warning.
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=1483649&r1=1483648&r2=1483649&view=diff
==============================================================================
--- openoffice/trunk/main/cui/source/tabpages/tpline.cxx (original)
+++ openoffice/trunk/main/cui/source/tabpages/tpline.cxx Fri May 17 05:25:47
2013
@@ -1344,6 +1344,8 @@ 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;
}
}
else