# HG changeset patch # User Lachlan Andrew # Date 1450175425 -39600 # Node ID 87b3348d8d76a4cbf63d2829750d3ebeb998756f # Parent a1529d24beff0bf545fe74f54341dd713c717ff7 Fix clearing breakpoints in @class files with dbstatus (bug #41190). * symtab.cc (symbol_table::fcn_info::fcn_info_rep::load_class_constructor): Add constructor to list of class_methods. diff -r a1529d24beff -r 87b3348d8d76 libinterp/corefcn/symtab.cc --- a/libinterp/corefcn/symtab.cc Sun Jan 17 17:20:23 2016 +0100 +++ b/libinterp/corefcn/symtab.cc Tue Dec 15 21:30:25 2015 +1100 @@ -434,6 +434,7 @@ retval = octave_value (fcn); class_constructors[name] = retval; + class_methods[name] = retval; } } else @@ -456,6 +457,7 @@ retval = maybe_cdef_ctor; class_constructors[name] = retval; + class_methods[name] = retval; function_on_path = old_function_on_path; }