# HG changeset patch # User Claus Gittinger # Date 1350766466 -7200 # Node ID 711e16a1c8d20f7e3f72cbc10f9b45523b7e4a0f # Parent 192aa172da63478d66ac3db69b57bc8794bd3146 changed: #linkToModule diff -r 192aa172da63 -r 711e16a1c8d2 ExternalLibraryFunction.st --- a/ExternalLibraryFunction.st Sat Oct 20 21:52:22 2012 +0200 +++ b/ExternalLibraryFunction.st Sat Oct 20 22:54:26 2012 +0200 @@ -626,7 +626,7 @@ moduleHandle isNil ifTrue:[ handle := self loadLibrary:moduleNameUsed. handle isNil ifTrue:[ - self error:('Cannot load dll/module: "%1"' bindWith: moduleNameUsed). + self error:('Cannot find or load dll/module: "%1"' bindWith: moduleNameUsed). ]. moduleHandle := handle. ]. @@ -1636,7 +1636,7 @@ !ExternalLibraryFunction class methodsFor:'documentation'! version_CVS - ^ '$Header: /cvs/stx/stx/libbasic/ExternalLibraryFunction.st,v 1.87 2012-09-25 10:11:36 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/ExternalLibraryFunction.st,v 1.88 2012-10-20 20:54:26 cg Exp $' ! version_SVN