diff options
author | Mark Spruiell <mes@zeroc.com> | 2017-10-11 09:56:48 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2017-10-11 09:56:48 -0700 |
commit | 29a49e0147f1dfce9be88085ab0ecb45b6f2a00a (patch) | |
tree | 46a8737e781468eead7cb715d2f4412cb3292d8e /matlab/lib | |
parent | ICE-8535 - Remove checksums (diff) | |
download | ice-29a49e0147f1dfce9be88085ab0ecb45b6f2a00a.tar.bz2 ice-29a49e0147f1dfce9be88085ab0ecb45b6f2a00a.tar.xz ice-29a49e0147f1dfce9be88085ab0ecb45b6f2a00a.zip |
Update calllib invocations for library renaming
Diffstat (limited to 'matlab/lib')
-rw-r--r-- | matlab/lib/+IceInternal/Util.m | 4 | ||||
-rw-r--r-- | matlab/lib/+IceInternal/WrapperObject.m | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/matlab/lib/+IceInternal/Util.m b/matlab/lib/+IceInternal/Util.m index b5799efcf85..cd5bf683f58 100644 --- a/matlab/lib/+IceInternal/Util.m +++ b/matlab/lib/+IceInternal/Util.m @@ -16,7 +16,7 @@ classdef Util % The value for fn MUST be given in single quotes! % function call(fn, varargin) - ex = calllib('icematlab', fn, varargin{:}); + ex = calllib('ice', fn, varargin{:}); if ~isempty(ex) ex.throwAsCaller(); end @@ -27,7 +27,7 @@ classdef Util % The value for fn MUST be given in single quotes! % function r = callWithResult(fn, varargin) - result = calllib('icematlab', fn, varargin{:}); + result = calllib('ice', fn, varargin{:}); if isempty(result) r = result; elseif ~isempty(result.exception) diff --git a/matlab/lib/+IceInternal/WrapperObject.m b/matlab/lib/+IceInternal/WrapperObject.m index 81f762bc51a..aaecc47d153 100644 --- a/matlab/lib/+IceInternal/WrapperObject.m +++ b/matlab/lib/+IceInternal/WrapperObject.m @@ -31,14 +31,14 @@ classdef (Abstract) WrapperObject < handle end function iceCall(obj, fn, varargin) name = strcat(obj.type_, '_', fn); - ex = calllib('icematlab', name, obj.impl_, varargin{:}); + ex = calllib('ice', name, obj.impl_, varargin{:}); if ~isempty(ex) ex.throwAsCaller(); end end function r = iceCallWithResult(obj, fn, varargin) name = strcat(obj.type_, '_', fn); - result = calllib('icematlab', name, obj.impl_, varargin{:}); + result = calllib('ice', name, obj.impl_, varargin{:}); if isempty(result) r = result; elseif ~isempty(result.exception) |