]> source.dussan.org Git - poi.git/commitdiff
fixed typo in toString()
authorJosh Micich <josh@apache.org>
Thu, 19 Feb 2009 19:05:06 +0000 (19:05 +0000)
committerJosh Micich <josh@apache.org>
Thu, 19 Feb 2009 19:05:06 +0000 (19:05 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@745972 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/record/HyperlinkRecord.java

index 46c84b5e22f7e21fc60e4bd367feca7b2435a151..190613294ff37324377731ee1348f0d9b3d8f769 100644 (file)
@@ -632,7 +632,7 @@ public final class HyperlinkRecord extends StandardRecord {
             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");