-rw-r--r-- | noncore/multimedia/opieplayer2/mediaplayerstate.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/noncore/multimedia/opieplayer2/mediaplayerstate.h b/noncore/multimedia/opieplayer2/mediaplayerstate.h index b99178d..163586b 100644 --- a/noncore/multimedia/opieplayer2/mediaplayerstate.h +++ b/noncore/multimedia/opieplayer2/mediaplayerstate.h | |||
@@ -119,17 +119,17 @@ signals: | |||
119 | void next(); | 119 | void next(); |
120 | 120 | ||
121 | private: | 121 | private: |
122 | bool streaming; | 122 | bool streaming : 1; |
123 | bool seekable; | 123 | bool seekable : 1; |
124 | bool fullscreen; | 124 | bool fullscreen: 1; |
125 | bool scaled; | 125 | bool scaled : 1; |
126 | bool blanked; | 126 | bool blanked : 1; |
127 | bool looping; | 127 | bool looping : 1; |
128 | bool shuffled; | 128 | bool shuffled : 1; |
129 | bool usePlaylist; | 129 | bool usePlaylist : 1; |
130 | bool paused; | 130 | bool paused : 1; |
131 | bool playing; | 131 | bool playing : 1; |
132 | bool stopped; | 132 | bool stopped : 1; |
133 | long curPosition; | 133 | long curPosition; |
134 | long curLength; | 134 | long curLength; |
135 | char curView; | 135 | char curView; |