Skip to content

Commit cc625d7

Browse files
committed
Fix DSS.COMErrorResults
1 parent 9a7febd commit cc625d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

+DSS_MATLAB/IDSS.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,11 +280,11 @@
280280
% the legacy/COM behavior. The value can be toggled through the API at any time.
281281
%
282282
% (API Extension)
283-
result = (calllib(obj.libname, 'DSS_Get_COMErrorResults') ~= 0);
283+
result = (calllib(obj.libname, 'ctx_DSS_Get_COMErrorResults', obj.dssctx) ~= 0);
284284
obj.CheckForError();
285285
end
286286
function obj = set.COMErrorResults(obj, Value)
287-
calllib(obj.libname, 'DSS_Set_COMErrorResults', Value);
287+
calllib(obj.libname, 'ctx_DSS_Set_COMErrorResults', obj.dssctx, Value);
288288
obj.CheckForError();
289289
end
290290

0 commit comments

Comments
 (0)