view test/bug-51534/child_bug51534.m @ 31237:e3016248ca5d

uifigure.m: Call set () only if varargin is not empty (bug #63088) * uifigure.m: Call set () only if varargin is not empty.
author John Donoghue <john.donoghue@ieee.org>
date Wed, 21 Sep 2022 09:55:32 -0400
parents ff893e26aeeb
children
line wrap: on
line source

classdef child_bug51534 < parent_bug51534
  methods
    function self = child_bug51534 (val)
      self@parent_bug51534 (val);
    endfunction
  endmethods
endclassdef