diff options
author | senator <senator> | 2007-07-18 08:14:52 +0000 |
---|---|---|
committer | senator <senator> | 2007-07-18 08:14:52 +0000 |
commit | f6214b000a115181ea1dab84ef1a18fb6bfae730 (patch) | |
tree | 2116c489f54dbb5945b0f7d9fe10983feb7e7c6b /client | |
parent | fa15dfc957ed262b047a70e653a7308251575fcd (diff) |
changed frame from QFrame to QGroupBox
Diffstat (limited to 'client')
-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: |