From d86803bacac02ae99388cba069532851a5e08ce8 Mon Sep 17 00:00:00 2001 From: simon Date: Mon, 02 Dec 2002 16:58:29 +0000 Subject: - save memory, use bitfields --- (limited to 'noncore/multimedia/opieplayer2') 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: void next(); private: - bool streaming; - bool seekable; - bool fullscreen; - bool scaled; - bool blanked; - bool looping; - bool shuffled; - bool usePlaylist; - bool paused; - bool playing; - bool stopped; + bool streaming : 1; + bool seekable : 1; + bool fullscreen: 1; + bool scaled : 1; + bool blanked : 1; + bool looping : 1; + bool shuffled : 1; + bool usePlaylist : 1; + bool paused : 1; + bool playing : 1; + bool stopped : 1; long curPosition; long curLength; char curView; -- cgit v0.9.0.2