comparison libgui/graphics/PushTool.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
29 29
30 #include "PushTool.h" 30 #include "PushTool.h"
31 31
32 #include "ToolBarButton.cc" 32 #include "ToolBarButton.cc"
33 33
34 namespace octave 34 OCTAVE_BEGIN_NAMESPACE(octave)
35 {
36 35
37 PushTool * 36 PushTool *
38 PushTool::create (octave::interpreter& interp, const graphics_object& go) 37 PushTool::create (octave::interpreter& interp, const graphics_object& go)
39 { 38 {
40 Object *parent = parentObject (interp, go); 39 Object *parent = parentObject (interp, go);
76 PushTool::clicked (void) 75 PushTool::clicked (void)
77 { 76 {
78 emit gh_callback_event (m_handle, "clickedcallback"); 77 emit gh_callback_event (m_handle, "clickedcallback");
79 } 78 }
80 79
81 }; 80 OCTAVE_END_NAMESPACE(octave);