summaryrefslogtreecommitdiff
path: root/noncore/multimedia
authorsimon <simon>2002-12-02 16:58:29 (UTC)
committer simon <simon>2002-12-02 16:58:29 (UTC)
commitd86803bacac02ae99388cba069532851a5e08ce8 (patch) (unidiff)
tree038325e6aaca32d93d93988948d6b36cc3b8bcd3 /noncore/multimedia
parent0b30001a6e9aef6de72577ba3a4957eeb0febf54 (diff)
downloadopie-d86803bacac02ae99388cba069532851a5e08ce8.zip
opie-d86803bacac02ae99388cba069532851a5e08ce8.tar.gz
opie-d86803bacac02ae99388cba069532851a5e08ce8.tar.bz2
- save memory, use bitfields
Diffstat (limited to 'noncore/multimedia') (more/less context) (show whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/mediaplayerstate.h22
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
121private: 121private:
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;