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.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/noncore/apps/oxygen/oxyframe.cpp b/noncore/apps/oxygen/oxyframe.cpp
index 060f9ca..a7833be 100644
--- a/noncore/apps/oxygen/oxyframe.cpp
+++ b/noncore/apps/oxygen/oxyframe.cpp
@@ -10,7 +10,12 @@
10 10
11#include <qpe/config.h> 11#include <qpe/config.h>
12#include "oxyframe.h" 12#include "oxyframe.h"
13 13
14OxyFrame::OxyFrame(QWidget *parent, const char *name) : QFrame(parent,name) 14OxyFrame::OxyFrame(QWidget *parent, const char *name) : QFrame(parent,name)
15{ 15{
16 this->setFrameStyle( QFrame::Panel );
17 this->setLineWidth( 2 );
18 this->setFrameShadow( QFrame::Raised );
19 this->setBackgroundColor( QColor( cyan ) );
16} 20}
21