From: Nick Burch Date: Tue, 24 Jan 2006 11:10:49 +0000 (+0000) Subject: BinaryTagData seems to contain records, but it isn't tagged as doing so. Try stepping... X-Git-Tag: REL_3_0_ALPHA3~195 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5f339a10c810465aa9d15035f47a78af9929f17c;p=poi.git BinaryTagData seems to contain records, but it isn't tagged as doing so. Try stepping in anyway git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@371892 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/scratchpad/src/org/apache/poi/hslf/dev/SlideShowDumper.java b/src/scratchpad/src/org/apache/poi/hslf/dev/SlideShowDumper.java index 931bce67d2..06dd67df9a 100644 --- a/src/scratchpad/src/org/apache/poi/hslf/dev/SlideShowDumper.java +++ b/src/scratchpad/src/org/apache/poi/hslf/dev/SlideShowDumper.java @@ -238,6 +238,12 @@ public void walkTree(int depth, int startPos, int maxLen) { // Now check if it's a container or not int container = (int)opt & 0x0f; + // BinaryTagData seems to contain records, but it + // isn't tagged as doing so. Try stepping in anyway + if(type == 5003L && opt == 0L) { + container = 0x0f; + } + if(type == 0L || (container != 0x0f)) { System.out.println(); } else if (type == 1035l || type == 1036l) {