diff options
Diffstat (limited to 'client/widgets/groupbox.cc')
-rw-r--r-- | client/widgets/groupbox.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/client/widgets/groupbox.cc b/client/widgets/groupbox.cc index 2bf696f..c3947a7 100644 --- a/client/widgets/groupbox.cc +++ b/client/widgets/groupbox.cc @@ -44,3 +44,13 @@ GroupBox::GroupBox(QDomNode &node, MacroWindow *macrowindow) setTitle(elem.attribute("caption")); } } + +void GroupBox::enable() +{ + setEnabled(true); +} + +void GroupBox::disable() +{ + setEnabled(false); +} |