summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2/mediaplayerstate.h
authorsimon <simon>2002-12-02 13:46:23 (UTC)
committer simon <simon>2002-12-02 13:46:23 (UTC)
commitb992707037f3bbf4573c52b34b3d25cbbf07bad0 (patch) (side-by-side diff)
treeb5a5866cda4b3e059001e3159cdae374777d4a72 /noncore/multimedia/opieplayer2/mediaplayerstate.h
parent6e883bf60ea91cc6b0624c7307edc27ea3db291b (diff)
downloadopie-b992707037f3bbf4573c52b34b3d25cbbf07bad0.zip
opie-b992707037f3bbf4573c52b34b3d25cbbf07bad0.tar.gz
opie-b992707037f3bbf4573c52b34b3d25cbbf07bad0.tar.bz2
- made the accessor functions constant
Diffstat (limited to 'noncore/multimedia/opieplayer2/mediaplayerstate.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/mediaplayerstate.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/noncore/multimedia/opieplayer2/mediaplayerstate.h b/noncore/multimedia/opieplayer2/mediaplayerstate.h
index 154e3b0..f9c1eeb 100644
--- a/noncore/multimedia/opieplayer2/mediaplayerstate.h
+++ b/noncore/multimedia/opieplayer2/mediaplayerstate.h
@@ -50,19 +50,19 @@ public:
MediaPlayerState( QObject *parent, const char *name );
~MediaPlayerState();
- bool streaming();
- bool seekable();
- bool fullscreen();
- bool scaled();
- bool looping();
- bool shuffled();
- bool playlist();
- bool paused();
- bool playing();
- bool stop();
- long position();
- long length();
- char view();
+ 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;
+ long position() const;
+ long length() const;
+ char view() const;
public slots:
void setIsStreaming( bool b );