You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by jo...@apache.org on 2009/02/19 20:05:07 UTC

svn commit: r745972 - /poi/trunk/src/java/org/apache/poi/hssf/record/HyperlinkRecord.java

Author: josh
Date: Thu Feb 19 19:05:06 2009
New Revision: 745972

URL: http://svn.apache.org/viewvc?rev=745972&view=rev
Log:
fixed typo in toString()

Modified:
    poi/trunk/src/java/org/apache/poi/hssf/record/HyperlinkRecord.java

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/HyperlinkRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/HyperlinkRecord.java?rev=745972&r1=745971&r2=745972&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/HyperlinkRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/HyperlinkRecord.java Thu Feb 19 19:05:06 2009
@@ -632,7 +632,7 @@
             buffer.append("    .moniker   = ").append(_moniker.formatAsString()).append("\n");
         }
         if ((_linkOpts & HLINK_PLACE) != 0) {
-            buffer.append("    .targetFrame= ").append(getTextMark()).append("\n");
+            buffer.append("    .textMark= ").append(getTextMark()).append("\n");
         }
         buffer.append("    .address   = ").append(getAddress()).append("\n");
         buffer.append("[/HYPERLINK RECORD]\n");



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org