comparison libgui/src/documentation-dock-widget.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 ad014fc78bd6 c6d54dd31a7e
children deb553ac2c54
comparison
equal deleted inserted replaced
31645:bd9da634f00d 31647:431f80aba37a
29 29
30 #include "documentation-dock-widget.h" 30 #include "documentation-dock-widget.h"
31 31
32 #include "help.h" 32 #include "help.h"
33 33
34 namespace octave 34 OCTAVE_BEGIN_NAMESPACE(octave)
35 { 35
36 documentation_dock_widget::documentation_dock_widget (QWidget *p, 36 documentation_dock_widget::documentation_dock_widget (QWidget *p,
37 base_qobject& oct_qobj) 37 base_qobject& oct_qobj)
38 : octave_dock_widget ("DocumentationDockWidget", p, oct_qobj), 38 : octave_dock_widget ("DocumentationDockWidget", p, oct_qobj),
39 m_docs (new documentation (this, oct_qobj)) 39 m_docs (new documentation (this, oct_qobj))
40 { 40 {
91 91
92 void documentation_dock_widget::unregisterDoc (const QString& name) 92 void documentation_dock_widget::unregisterDoc (const QString& name)
93 { 93 {
94 m_docs->unregisterDoc (name); 94 m_docs->unregisterDoc (name);
95 } 95 }
96 } 96
97 OCTAVE_END_NAMESPACE(octave)