summaryrefslogtreecommitdiff
path: root/noncore/apps/oxygen/oxyframe.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/oxygen/oxyframe.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/oxygen/oxyframe.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/noncore/apps/oxygen/oxyframe.cpp b/noncore/apps/oxygen/oxyframe.cpp
index 2d7fc84..a5f262e 100644
--- a/noncore/apps/oxygen/oxyframe.cpp
+++ b/noncore/apps/oxygen/oxyframe.cpp
@@ -11,15 +11,15 @@
#include <qpe/config.h>
#include "oxyframe.h"
OxyFrame::OxyFrame(QWidget *parent, const char *name) : QFrame(parent,name)
{
N = name;
- this->setFrameStyle( QFrame::Panel );
- this->setLineWidth( 2 );
- this->setFrameShadow( QFrame::Raised );
- this->setBackgroundColor( QColor( green ) );
+ this->setFrameStyle( QFrame::Box );
+ this->setLineWidth( 0 );
+ this->setMidLineWidth( 1 );
+ this->setFrameShadow( QFrame::Sunken );
}
void OxyFrame::mousePressEvent ( QMouseEvent * e ){
emit num( N );
};