author | simon <simon> | 2002-12-08 20:36:14 (UTC) |
---|---|---|
committer | simon <simon> | 2002-12-08 20:36:14 (UTC) |
commit | 7c3bd0be34ef70a2297e6f27c592da62f3010da5 (patch) (unidiff) | |
tree | c73aaf583ef2b9f56f544f580b52145aca356e84 | |
parent | ec91b042d8312f83027beb357448fe02a13e8923 (diff) | |
download | opie-7c3bd0be34ef70a2297e6f27c592da62f3010da5.zip opie-7c3bd0be34ef70a2297e6f27c592da62f3010da5.tar.gz opie-7c3bd0be34ef70a2297e6f27c592da62f3010da5.tar.bz2 |
- minor cleanup
-rw-r--r-- | noncore/multimedia/opieplayer2/audiowidget.cpp | 13 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/videowidget.cpp | 12 |
2 files changed, 15 insertions, 10 deletions
diff --git a/noncore/multimedia/opieplayer2/audiowidget.cpp b/noncore/multimedia/opieplayer2/audiowidget.cpp index 8dbfb3d..7bf3a19 100644 --- a/noncore/multimedia/opieplayer2/audiowidget.cpp +++ b/noncore/multimedia/opieplayer2/audiowidget.cpp | |||
@@ -52,4 +52,7 @@ | |||
52 | 52 | ||
53 | static const int xo = -2; // movable x offset | 53 | namespace |
54 | static const int yo = 22; // movable y offset | 54 | { |
55 | |||
56 | const int xo = -2; // movable x offset | ||
57 | const int yo = 22; // movable y offset | ||
55 | 58 | ||
@@ -78,4 +81,3 @@ const char * const skin_mask_file_names[10] = { | |||
78 | 81 | ||
79 | 82 | void changeTextColor( QWidget * w) { | |
80 | static void changeTextColor( QWidget * w) { | ||
81 | QPalette p = w->palette(); | 83 | QPalette p = w->palette(); |
@@ -86,4 +88,5 @@ static void changeTextColor( QWidget * w) { | |||
86 | 88 | ||
87 | static const int numButtons = (sizeof(audioButtons)/sizeof(MediaButton)); | 89 | const int numButtons = (sizeof(audioButtons)/sizeof(MediaButton)); |
88 | 90 | ||
91 | } | ||
89 | 92 | ||
diff --git a/noncore/multimedia/opieplayer2/videowidget.cpp b/noncore/multimedia/opieplayer2/videowidget.cpp index b7305fe..a0aed62 100644 --- a/noncore/multimedia/opieplayer2/videowidget.cpp +++ b/noncore/multimedia/opieplayer2/videowidget.cpp | |||
@@ -55,6 +55,7 @@ | |||
55 | 55 | ||
56 | namespace | ||
57 | { | ||
56 | 58 | ||
57 | 59 | const int xo = 2; // movable x offset | |
58 | static const int xo = 2; // movable x offset | 60 | const int yo = 0; // movable y offset |
59 | static const int yo = 0; // movable y offset | ||
60 | 61 | ||
@@ -75,3 +76,3 @@ MediaButton videoButtons[] = { | |||
75 | 76 | ||
76 | const char *skinV_mask_file_names[7] = { | 77 | const char * const skinV_mask_file_names[7] = { |
77 | "stop","play","back","fwd","up","down","full" | 78 | "stop","play","back","fwd","up","down","full" |
@@ -79,4 +80,5 @@ const char *skinV_mask_file_names[7] = { | |||
79 | 80 | ||
80 | static const int numVButtons = (sizeof(videoButtons)/sizeof(MediaButton)); | 81 | const int numVButtons = (sizeof(videoButtons)/sizeof(MediaButton)); |
81 | 82 | ||
83 | } | ||
82 | 84 | ||