Skip to content

Commit 28e548a

Browse files
committed
fix for r2014b: replace isnumeric -> ishandle
1 parent fb1cc14 commit 28e548a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/+ebfret/+ui/IndexControl.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
ip = inputParser();
2424
ip.StructExpand = true;
25-
ip.addParamValue('parent', gco(), @isnumeric);
25+
ip.addParamValue('parent', gco(), @ishandle);
2626
ip.addParamValue('position', [0 0 1 1], @isnumeric);
2727
ip.addParamValue('units', 'Normalized', ...
2828
@(s) any(strcmpi(s, ...

src/+ebfret/+ui/PlotPanel.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
% 'axes' : {'name', [l b h w], ...}
1717
ip = inputParser();
1818
ip.StructExpand = true;
19-
ip.addParamValue('parent', gco(), @isnumeric);
19+
ip.addParamValue('parent', gco(), @ishandle);
2020
ip.addParamValue('position', [0 0 1 1], @isnumeric);
2121
ip.addParamValue('title', 'Time Series', @isstr);
2222
ip.addParamValue('units', 'Normalized', ...

0 commit comments

Comments
 (0)