diff options
author | deva <deva> | 2008-07-02 09:42:38 +0000 |
---|---|---|
committer | deva <deva> | 2008-07-02 09:42:38 +0000 |
commit | fe81dbb0a0dfc9c3808df9576dfe9a8f0b7520be (patch) | |
tree | 33281ee07a3fef90dfca8fbe330cbd7f16b79967 /client/widgets/checkbox.cc | |
parent | 4d7617cbf20985b7cf2231675d8aadd01f77c3d2 (diff) |
Made all setValue calls in a second pass, to the construction of the widgets.
Diffstat (limited to 'client/widgets/checkbox.cc')
-rw-r--r-- | client/widgets/checkbox.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/client/widgets/checkbox.cc b/client/widgets/checkbox.cc index 8474e58..95f5a53 100644 --- a/client/widgets/checkbox.cc +++ b/client/widgets/checkbox.cc @@ -47,11 +47,13 @@ CheckBox::CheckBox(QDomNode &node, MacroWindow *macrowindow) connect(this, SIGNAL(stateChanged(int)), this, SLOT(state_change())); + /* // This is done later if(elem.hasAttribute("value")) { setValue(elem.attribute("value")); } else { setValue("false"); } + */ } QString CheckBox::getValue() |