comparison libgui/src/history-dock-widget.h @ 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
33 #include <QSortFilterProxyModel> 33 #include <QSortFilterProxyModel>
34 #include <QStringListModel> 34 #include <QStringListModel>
35 35
36 #include "octave-dock-widget.h" 36 #include "octave-dock-widget.h"
37 37
38 namespace octave 38 OCTAVE_BEGIN_NAMESPACE(octave)
39 { 39
40 class base_qobject; 40 class base_qobject;
41 41
42 class history_dock_widget : public octave_dock_widget 42 class history_dock_widget : public octave_dock_widget
43 { 43 {
44 Q_OBJECT 44 Q_OBJECT
104 QWidget *m_filter_widget; 104 QWidget *m_filter_widget;
105 bool m_filter_shown; 105 bool m_filter_shown;
106 106
107 enum { MaxFilterHistory = 10 }; 107 enum { MaxFilterHistory = 10 };
108 }; 108 };
109 } 109
110 OCTAVE_END_NAMESPACE(octave)
110 111
111 #endif 112 #endif