summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/oticker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie/oticker.cpp b/libopie/oticker.cpp
index 3fcef5d..47dcb3e 100644
--- a/libopie/oticker.cpp
+++ b/libopie/oticker.cpp
@@ -35,25 +35,25 @@
35#include <qwidget.h> 35#include <qwidget.h>
36#include <qpixmap.h> 36#include <qpixmap.h>
37#include <qbutton.h> 37#include <qbutton.h>
38#include <qpainter.h> 38#include <qpainter.h>
39#include <qframe.h> 39#include <qframe.h>
40#include <qlayout.h> 40#include <qlayout.h>
41#include <qdir.h> 41#include <qdir.h>
42#include <stdlib.h> 42#include <stdlib.h>
43#include <stdio.h> 43#include <stdio.h>
44 44
45#include "oticker.h" 45#include "oticker.h"
46 46
47OTicker::OTicker( QWidget* parent=0 ) 47OTicker::OTicker( QWidget* parent )
48 : QFrame( parent ) { 48 : QFrame( parent ) {
49 49
50// setFrameStyle( NoFrame/*WinPanel | Sunken */); 50// setFrameStyle( NoFrame/*WinPanel | Sunken */);
51 51
52 Config cfg("qpe"); 52 Config cfg("qpe");
53 cfg.setGroup("Appearance"); 53 cfg.setGroup("Appearance");
54 backgroundcolor = QColor( cfg.readEntry( "Background", "#E5E1D5" ) ); 54 backgroundcolor = QColor( cfg.readEntry( "Background", "#E5E1D5" ) );
55 foregroundcolor= Qt::black; 55 foregroundcolor= Qt::black;
56} 56}
57 57
58OTicker::~OTicker() { 58OTicker::~OTicker() {
59} 59}