comparison libgui/src/qt-application.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 59c9da7c43d6 c6d54dd31a7e
children deb553ac2c54
comparison
equal deleted inserted replaced
31645:bd9da634f00d 31647:431f80aba37a
42 42
43 #include "display.h" 43 #include "display.h"
44 #include "octave.h" 44 #include "octave.h"
45 #include "sysdep.h" 45 #include "sysdep.h"
46 46
47 namespace octave 47 OCTAVE_BEGIN_NAMESPACE(octave)
48 { 48
49 qt_application::qt_application (const std::string& organization_name, 49 qt_application::qt_application (const std::string& organization_name,
50 const std::string& application_name, 50 const std::string& application_name,
51 const std::string& application_version, 51 const std::string& application_version,
52 int argc, char **argv) 52 int argc, char **argv)
53 : application (argc, argv) 53 : application (argc, argv)
99 99
100 base_qobject qt_interface (*this, start_gui_p ()); 100 base_qobject qt_interface (*this, start_gui_p ());
101 101
102 return qt_interface.exec (); 102 return qt_interface.exec ();
103 } 103 }
104 } 104
105 OCTAVE_END_NAMESPACE(octave)