comparison libgui/graphics/CheckBoxControl.h @ 18501:523878f76518 gui-release

style fix: eliminate lines of slashes to separate functions.
author John W. Eaton <jwe@octave.org>
date Thu, 20 Feb 2014 15:10:07 -0500
parents 49877d3be064
children f0e61a67ad9f
comparison
equal deleted inserted replaced
18500:49877d3be064 18501:523878f76518
25 25
26 #include "ButtonControl.h" 26 #include "ButtonControl.h"
27 27
28 class QCheckBox; 28 class QCheckBox;
29 29
30 //////////////////////////////////////////////////////////////////////////////
31
32 namespace QtHandles 30 namespace QtHandles
33 { 31 {
34
35 //////////////////////////////////////////////////////////////////////////////
36 32
37 class CheckBoxControl : public ButtonControl 33 class CheckBoxControl : public ButtonControl
38 { 34 {
39 public: 35 public:
40 CheckBoxControl (const graphics_object& go, QCheckBox* box); 36 CheckBoxControl (const graphics_object& go, QCheckBox* box);
41 ~CheckBoxControl (void); 37 ~CheckBoxControl (void);
42 38
43 static CheckBoxControl* create (const graphics_object& go); 39 static CheckBoxControl* create (const graphics_object& go);
44 }; 40 };
45 41
46 //////////////////////////////////////////////////////////////////////////////
47
48 }; // namespace QtHandles 42 }; // namespace QtHandles
49 43
50 //////////////////////////////////////////////////////////////////////////////
51
52 #endif 44 #endif