recognise new ptg

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353084 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Avik Sengupta 2003-05-05 15:35:39 +00:00
parent c730219f01
commit 3bcff21ed0

View File

@ -266,6 +266,13 @@ public abstract class Ptg
retval = new NamePtg(data, offset);
break;
case NameXPtg.sid : // 0x39
case NameXPtg.sid+0x20 : // 0x45
case NameXPtg.sid+0x40 : // 0x79
retval = new NameXPtg(data, offset);
break;
case ExpPtg.sid :
retval = new ExpPtg(data, offset);