comparison libgui/graphics/CheckBoxControl.cc @ 19621:af0399a5aae0 gui-release

untabify QtHandles source files
author John W. Eaton <jwe@octave.org>
date Fri, 23 Jan 2015 16:24:46 -0500
parents 523878f76518
children 3cc0734283dc
comparison
equal deleted inserted replaced
19620:a1d172bfcb2f 19621:af0399a5aae0
39 if (parent) 39 if (parent)
40 { 40 {
41 Container* container = parent->innerContainer (); 41 Container* container = parent->innerContainer ();
42 42
43 if (container) 43 if (container)
44 return new CheckBoxControl (go, new QCheckBox (container)); 44 return new CheckBoxControl (go, new QCheckBox (container));
45 } 45 }
46 46
47 return 0; 47 return 0;
48 } 48 }
49 49