summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2/mediaplayerstate.h
authorsimon <simon>2002-12-02 13:45:55 (UTC)
committer simon <simon>2002-12-02 13:45:55 (UTC)
commit6e883bf60ea91cc6b0624c7307edc27ea3db291b (patch) (side-by-side diff)
treeb07c9f35a0f8aa2693d19496e24bf0f577e98d28 /noncore/multimedia/opieplayer2/mediaplayerstate.h
parentfcee8216cade787e0099c0aa43a5b8f90b24a85b (diff)
downloadopie-6e883bf60ea91cc6b0624c7307edc27ea3db291b.zip
opie-6e883bf60ea91cc6b0624c7307edc27ea3db291b.tar.gz
opie-6e883bf60ea91cc6b0624c7307edc27ea3db291b.tar.bz2
- made isPaused, isPlaying and isStopped private member variables
Diffstat (limited to 'noncore/multimedia/opieplayer2/mediaplayerstate.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/mediaplayerstate.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/noncore/multimedia/opieplayer2/mediaplayerstate.h b/noncore/multimedia/opieplayer2/mediaplayerstate.h
index 8c4e09e..154e3b0 100644
--- a/noncore/multimedia/opieplayer2/mediaplayerstate.h
+++ b/noncore/multimedia/opieplayer2/mediaplayerstate.h
@@ -50,9 +50,6 @@ public:
MediaPlayerState( QObject *parent, const char *name );
~MediaPlayerState();
- bool isPaused;
- bool isPlaying;
- bool isStoped;
bool streaming();
bool seekable();
bool fullscreen();
@@ -130,6 +127,9 @@ private:
bool isLooping;
bool isShuffled;
bool usePlaylist;
+ bool isPaused;
+ bool isPlaying;
+ bool isStoped;
long curPosition;
long curLength;
char curView;