summaryrefslogtreecommitdiff
path: root/client/widgets/frame.cc
diff options
context:
space:
mode:
Diffstat (limited to 'client/widgets/frame.cc')
-rw-r--r--client/widgets/frame.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/client/widgets/frame.cc b/client/widgets/frame.cc
index a082882..285619a 100644
--- a/client/widgets/frame.cc
+++ b/client/widgets/frame.cc
@@ -26,8 +26,9 @@
*/
#include "frame.h"
-Frame::Frame(QWidget *parent) : QGroupBox(parent)
+Frame::Frame(QWidget *parent, QString caption) : QGroupBox(parent)
{
+ setTitle(caption);
}
QString Frame::getValue()