https://bz.apache.org/bugzilla/show_bug.cgi?id=52164
Andreas Beeker <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Hardware|PC |All Status|NEEDINFO |RESOLVED Resolution|--- |WORKSFORME OS|Windows XP |All --- Comment #4 from Andreas Beeker <[email protected]> --- I also can't reproduce the error and there wasn't any response, so I'm closing this as "works for me" This was my test code: public void bug52164() throws IOException { HSLFSlideShow ppt = new HSLFSlideShow(); HSLFSlide sl = ppt.createSlide(); HSLFTextBox tb = sl.createTextBox(); tb.getTextParagraphs().get(0).getTextRuns().get(0).setFontFamily("Cambria"); tb.setText("Helloworld é è ë ê à ö ï î ô ü û"); tb.moveTo(100, 100); FileOutputStream fos = new FileOutputStream("bla.ppt"); ppt.write(fos); fos.close(); ppt.close(); } -- 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]
