comparison libgui/graphics/ListBoxControl.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
33 33
34 #include "Container.h" 34 #include "Container.h"
35 #include "ListBoxControl.h" 35 #include "ListBoxControl.h"
36 #include "QtHandlesUtils.h" 36 #include "QtHandlesUtils.h"
37 37
38 namespace octave 38 OCTAVE_BEGIN_NAMESPACE(octave)
39 {
40 39
41 static void 40 static void
42 updateSelection (QListWidget *list, const Matrix& value) 41 updateSelection (QListWidget *list, const Matrix& value)
43 { 42 {
44 octave_idx_type n = value.numel (); 43 octave_idx_type n = value.numel ();
281 280
282 } 281 }
283 return BaseControl::eventFilter (watched, e) || override_return; 282 return BaseControl::eventFilter (watched, e) || override_return;
284 } 283 }
285 } 284 }
286 } 285
286 OCTAVE_END_NAMESPACE(octave)