author | zecke <zecke> | 2003-06-11 10:24:16 (UTC) |
---|---|---|
committer | zecke <zecke> | 2003-06-11 10:24:16 (UTC) |
commit | 188319af82322c84f02e1abb848d908ca8f9e26c (patch) (unidiff) | |
tree | e88f078a70ded124b1cf0adc2b2a039f564e861b /libopie/oticker.cpp | |
parent | 4d05b57498f6b2f135ecd55e5fde5e6ebc21c160 (diff) | |
download | opie-188319af82322c84f02e1abb848d908ca8f9e26c.zip opie-188319af82322c84f02e1abb848d908ca8f9e26c.tar.gz opie-188319af82322c84f02e1abb848d908ca8f9e26c.tar.bz2 |
do what the FIXME says... const fixes
-rw-r--r-- | libopie/oticker.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libopie/oticker.cpp b/libopie/oticker.cpp index 9a7044d..4fb5945 100644 --- a/libopie/oticker.cpp +++ b/libopie/oticker.cpp | |||
@@ -54,22 +54,22 @@ OTicker::OTicker( QWidget* parent ) | |||
54 | foregroundcolor= Qt::black; | 54 | foregroundcolor= Qt::black; |
55 | updateTimerTime = 50; | 55 | updateTimerTime = 50; |
56 | scrollLength = 1; | 56 | scrollLength = 1; |
57 | } | 57 | } |
58 | 58 | ||
59 | OTicker::~OTicker() { | 59 | OTicker::~OTicker() { |
60 | } | 60 | } |
61 | 61 | ||
62 | void OTicker::setBackgroundColor(QColor backcolor) { | 62 | void OTicker::setBackgroundColor(const QColor& backcolor) { |
63 | backgroundcolor = backcolor; | 63 | backgroundcolor = backcolor; |
64 | update(); | 64 | update(); |
65 | } | 65 | } |
66 | 66 | ||
67 | void OTicker::setForegroundColor(QColor backcolor) { | 67 | void OTicker::setForegroundColor(const QColor& backcolor) { |
68 | foregroundcolor = backcolor; | 68 | foregroundcolor = backcolor; |
69 | update(); | 69 | update(); |
70 | } | 70 | } |
71 | 71 | ||
72 | void OTicker::setFrame(int frameStyle) { | 72 | void OTicker::setFrame(int frameStyle) { |
73 | setFrameStyle( frameStyle/*WinPanel | Sunken */); | 73 | setFrameStyle( frameStyle/*WinPanel | Sunken */); |
74 | update(); | 74 | update(); |
75 | } | 75 | } |