summaryrefslogtreecommitdiff
path: root/noncore/apps/oxygen/oxyframe.cpp
Unidiff
Diffstat (limited to 'noncore/apps/oxygen/oxyframe.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/oxygen/oxyframe.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/noncore/apps/oxygen/oxyframe.cpp b/noncore/apps/oxygen/oxyframe.cpp
index c61c8e5..2ce40e7 100644
--- a/noncore/apps/oxygen/oxyframe.cpp
+++ b/noncore/apps/oxygen/oxyframe.cpp
@@ -20,5 +20,6 @@
20#include "oxyframe.h" 20#include "oxyframe.h"
21 21
22OxyFrame::OxyFrame(QWidget *parent, const char *name) : QFrame(parent,name) 22OxyFrame::OxyFrame(QWidget *parent, const char *name, QString symbol )
23 : QLabel(parent,name)
23{ 24{
24 N = name; 25 N = name;
@@ -27,4 +28,11 @@ OxyFrame::OxyFrame(QWidget *parent, const char *name) : QFrame(parent,name)
27 this->setMidLineWidth( 1 ); 28 this->setMidLineWidth( 1 );
28 this->setFrameShadow( QFrame::Sunken ); 29 this->setFrameShadow( QFrame::Sunken );
30 setMinimumSize(6,6);
31 setScaledContents( true );
32 QFont font;
33 font.setWeight(QFont::Light);
34 font.setPixelSize(3);
35 setFont( font );
36 setText( symbol );
29} 37}
30 38