1651926 getString() should be called instead of toString()

This commit is contained in:
clay_shooter
2007-02-04 20:33:50 +00:00
parent 27134742f1
commit 4afdf31d25

View File

@@ -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();
}