comparison libgui/src/set-path-dialog.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
55 #include "set-path-dialog.h" 55 #include "set-path-dialog.h"
56 #include "set-path-model.h" 56 #include "set-path-model.h"
57 57
58 #include "ovl.h" 58 #include "ovl.h"
59 59
60 namespace octave 60 OCTAVE_BEGIN_NAMESPACE(octave)
61 { 61
62 set_path_dialog::set_path_dialog (QWidget *parent) 62 set_path_dialog::set_path_dialog (QWidget *parent)
63 : QDialog (parent) 63 : QDialog (parent)
64 { 64 {
65 setWindowTitle (tr ("Set Path")); 65 setWindowTitle (tr ("Set Path"));
66 66
308 save_settings (); 308 save_settings ();
309 309
310 QWidget::closeEvent (e); 310 QWidget::closeEvent (e);
311 } 311 }
312 312
313 } 313 OCTAVE_END_NAMESPACE(octave)