comparison libgui/graphics/ButtonControl.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 bd9da634f00d c6d54dd31a7e
children deb553ac2c54
comparison
equal deleted inserted replaced
31645:bd9da634f00d 31647:431f80aba37a
28 28
29 #include "BaseControl.h" 29 #include "BaseControl.h"
30 30
31 class QAbstractButton; 31 class QAbstractButton;
32 32
33 namespace octave 33 OCTAVE_BEGIN_NAMESPACE(octave)
34 { 34
35 class interpreter; 35 class interpreter;
36 36
37 class ButtonControl : public BaseControl 37 class ButtonControl : public BaseControl
38 { 38 {
39 Q_OBJECT 39 Q_OBJECT
52 52
53 private: 53 private:
54 bool m_blockCallback; 54 bool m_blockCallback;
55 }; 55 };
56 56
57 } 57 OCTAVE_END_NAMESPACE(octave)
58 58
59 #endif 59 #endif