https://issues.apache.org/bugzilla/show_bug.cgi?id=50847
--- Comment #5 from andrei <[email protected]> 2011-03-02 10:18:20 EST --- Patch: public void setCharSet(int charset) { CTIntProperty charsetProperty = _ctFont.sizeOfCharsetArray() == 0 ? _ctFont.addNewCharset() : _ctFont.getCharsetArray(0); FontCharset fontCharset = FontCharset.valueOf(charset); if (fontCharset != null) { charsetProperty.setVal(fontCharset.getValue()); } else { throw new POIXMLException("Attention: an attempt to set a type of unknow charset and charset"); } } -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
