view test/classes/@Blork/Blork.m @ 21009:9b21039bf63b

fix line number when removing a breakpoint via the gui (bug #46779) * file-editor-tab.cc (handle_margin_clicked): fix line number for removing a breakpoint
author Torsten <ttl@justmail.de>
date Wed, 30 Dec 2015 08:28:37 +0100
parents b1283d4c06c2
children
line wrap: on
line source

function s = Blork (bleek)
% Test class.

  if (nargin == 1 && isa (bleek, 'Blork'))
    s = bleek;
  else
    if (nargin == 0)
      s.bleek = 1;
    else
      s.bleek = bleek;
    end
    s = class (s, 'Blork');
  end

end