From 1646c471d8a1f54df65c8d58402bc80af004f498 Mon Sep 17 00:00:00 2001 From: simon Date: Mon, 02 Dec 2002 13:47:10 +0000 Subject: - paused() -> isPaused() and the like for all accessor functions in the mediaplayerstate class --- (limited to 'noncore/multimedia/opieplayer2/mediaplayerstate.h') diff --git a/noncore/multimedia/opieplayer2/mediaplayerstate.h b/noncore/multimedia/opieplayer2/mediaplayerstate.h index f9c1eeb..4e837e3 100644 --- a/noncore/multimedia/opieplayer2/mediaplayerstate.h +++ b/noncore/multimedia/opieplayer2/mediaplayerstate.h @@ -50,16 +50,16 @@ public: MediaPlayerState( QObject *parent, const char *name ); ~MediaPlayerState(); - bool streaming() const; - bool seekable() const; - bool fullscreen() const; - bool scaled() const; - bool looping() const; - bool shuffled() const; - bool playlist() const; - bool paused() const; - bool playing() const; - bool stop() const; + bool isStreaming() const; + bool isSeekable() const; + bool isFullscreen() const; + bool isScaled() const; + bool isLooping() const; + bool isShuffled() const; + bool isUsingPlaylist() const; + bool isPaused() const; + bool isPlaying() const; + bool isStop() const; long position() const; long length() const; char view() const; @@ -119,17 +119,17 @@ signals: void next(); private: - bool isStreaming; - bool isSeekable; - bool isFullscreen; - bool isScaled; - bool isBlanked; - bool isLooping; - bool isShuffled; + bool streaming; + bool seekable; + bool fullscreen; + bool scaled; + bool blanked; + bool looping; + bool shuffled; bool usePlaylist; - bool isPaused; - bool isPlaying; - bool isStoped; + bool paused; + bool playing; + bool stoped; long curPosition; long curLength; char curView; -- cgit v0.9.0.2