diff options
Diffstat (limited to 'client/widgets')
-rw-r--r-- | client/widgets/frame.cc | 2 | ||||
-rw-r--r-- | client/widgets/frame.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/client/widgets/frame.cc b/client/widgets/frame.cc index 7ef704d..a082882 100644 --- a/client/widgets/frame.cc +++ b/client/widgets/frame.cc @@ -26,7 +26,7 @@ */ #include "frame.h" -Frame::Frame(QWidget *parent) : QFrame(parent) +Frame::Frame(QWidget *parent) : QGroupBox(parent) { } diff --git a/client/widgets/frame.h b/client/widgets/frame.h index bdf3d83..520891c 100644 --- a/client/widgets/frame.h +++ b/client/widgets/frame.h @@ -28,9 +28,9 @@ #define __PRACRO_FRAME_H__ #include "widget.h" -#include <QFrame> +#include <QGroupBox> -class Frame : public Widget, public QFrame +class Frame : public Widget, public QGroupBox { public: |