comparison libgui/src/workspace-model.cc @ 31647:431f80aba37a

maint: Merge stable to default.
author John W. Eaton <jwe@octave.org>
date Tue, 06 Dec 2022 15:37:43 -0500
parents ca7d58406f82 c6d54dd31a7e
children deb553ac2c54
comparison
equal deleted inserted replaced
31645:bd9da634f00d 31647:431f80aba37a
36 #include "workspace-model.h" 36 #include "workspace-model.h"
37 37
38 #include "syminfo.h" 38 #include "syminfo.h"
39 #include "utils.h" 39 #include "utils.h"
40 40
41 namespace octave 41 OCTAVE_BEGIN_NAMESPACE(octave)
42 { 42
43 workspace_model::workspace_model (QObject *p) 43 workspace_model::workspace_model (QObject *p)
44 : QAbstractTableModel (p) 44 : QAbstractTableModel (p)
45 { 45 {
46 // The header names. Use tr () again when accessing them since 46 // The header names. Use tr () again when accessing them since
47 // the translator si not yet initialized when this ctor is called 47 // the translator si not yet initialized when this ctor is called
270 270
271 endResetModel (); 271 endResetModel ();
272 272
273 emit model_changed (); 273 emit model_changed ();
274 } 274 }
275 } 275
276 OCTAVE_END_NAMESPACE(octave)