From 4afdf31d2500350b42193415a0065ceb73a1b53e Mon Sep 17 00:00:00 2001 From: clay_shooter Date: Sun, 4 Feb 2007 20:33:50 +0000 Subject: [PATCH] 1651926 getString() should be called instead of toString() --- src/com/jacob/activeX/ActiveXComponent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/jacob/activeX/ActiveXComponent.java b/src/com/jacob/activeX/ActiveXComponent.java index 7092d17..39c2f82 100644 --- a/src/com/jacob/activeX/ActiveXComponent.java +++ b/src/com/jacob/activeX/ActiveXComponent.java @@ -198,7 +198,7 @@ public class ActiveXComponent extends Dispatch { * @return String value of property */ public String getPropertyAsString(String propertyName){ - return Dispatch.get(this, propertyName).toString(); + return Dispatch.get(this, propertyName).getString(); }