You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@poi.apache.org by ni...@apache.org on 2006/04/05 13:43:41 UTC

svn commit: r391590 - /jakarta/poi/trunk/src/scratchpad/src/org/apache/poi/POIDocument.java

Author: nick
Date: Wed Apr  5 04:43:40 2006
New Revision: 391590

URL: http://svn.apache.org/viewcvs?rev=391590&view=rev
Log:
More HPSF-related beautification

Modified:
    jakarta/poi/trunk/src/scratchpad/src/org/apache/poi/POIDocument.java

Modified: jakarta/poi/trunk/src/scratchpad/src/org/apache/poi/POIDocument.java
URL: http://svn.apache.org/viewcvs/jakarta/poi/trunk/src/scratchpad/src/org/apache/poi/POIDocument.java?rev=391590&r1=391589&r2=391590&view=diff
==============================================================================
--- jakarta/poi/trunk/src/scratchpad/src/org/apache/poi/POIDocument.java (original)
+++ jakarta/poi/trunk/src/scratchpad/src/org/apache/poi/POIDocument.java Wed Apr  5 04:43:40 2006
@@ -99,10 +99,10 @@
 	 */
 	protected void writeProperties(POIFSFileSystem outFS) throws IOException {
 		if(sInf != null) {
-			writePropertySet("\005SummaryInformation",sInf,outFS);
+			writePropertySet(SummaryInformation.DEFAULT_STREAM_NAME,sInf,outFS);
 		}
 		if(dsInf != null) {
-			writePropertySet("\005DocumentSummaryInformation",dsInf,outFS);
+			writePropertySet(DocumentSummaryInformation.DEFAULT_STREAM_NAME,dsInf,outFS);
 		}
 	}
 	



---------------------------------------------------------------------
To unsubscribe, e-mail: poi-dev-unsubscribe@jakarta.apache.org
Mailing List:    http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/