diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2015-03-19 23:44:23 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2015-03-19 23:44:23 +0000 |
commit | 9a85a2e76bc5317617119f8644c7c6303a0e97dd (patch) | |
tree | 58cc24d738e3ccb9059d3d13d9da1967080c1230 /src/integrationtest/org/apache/poi/stress/HSLFFileHandler.java | |
parent | 7afac11f67ef21f520dc7b2e797e36f432624222 (diff) | |
download | poi-9a85a2e76bc5317617119f8644c7c6303a0e97dd.tar.gz poi-9a85a2e76bc5317617119f8644c7c6303a0e97dd.zip |
Snapshot commit - still lots of errors, xslf rendering works, started work on hslf
git-svn-id: https://svn.apache.org/repos/asf/poi/branches/common_sl@1667902 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/integrationtest/org/apache/poi/stress/HSLFFileHandler.java')
-rw-r--r-- | src/integrationtest/org/apache/poi/stress/HSLFFileHandler.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/integrationtest/org/apache/poi/stress/HSLFFileHandler.java b/src/integrationtest/org/apache/poi/stress/HSLFFileHandler.java index 51e54f6eb2..6b2ee5f09e 100644 --- a/src/integrationtest/org/apache/poi/stress/HSLFFileHandler.java +++ b/src/integrationtest/org/apache/poi/stress/HSLFFileHandler.java @@ -22,14 +22,14 @@ import static org.junit.Assert.assertTrue; import java.io.FileInputStream; import java.io.InputStream; -import org.apache.poi.hslf.HSLFSlideShow; +import org.apache.poi.hslf.model.HSLFSlideShowImpl; import org.apache.poi.hslf.record.Record; import org.junit.Test; public class HSLFFileHandler extends POIFSFileHandler { @Override public void handleFile(InputStream stream) throws Exception { - HSLFSlideShow slide = new HSLFSlideShow(stream); + HSLFSlideShowImpl slide = new HSLFSlideShowImpl(stream); assertNotNull(slide.getCurrentUserAtom()); assertNotNull(slide.getEmbeddedObjects()); assertNotNull(slide.getUnderlyingBytes()); |