summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/mediaplayerstate.cpp26
-rw-r--r--noncore/multimedia/opieplayer2/mediaplayerstate.h26
2 files changed, 26 insertions, 26 deletions
diff --git a/noncore/multimedia/opieplayer2/mediaplayerstate.cpp b/noncore/multimedia/opieplayer2/mediaplayerstate.cpp
index 0b33dfd..a80d8fd 100644
--- a/noncore/multimedia/opieplayer2/mediaplayerstate.cpp
+++ b/noncore/multimedia/opieplayer2/mediaplayerstate.cpp
@@ -94,3 +94,3 @@ void MediaPlayerState::writeConfig( Config& cfg ) const {
94 94
95bool MediaPlayerState::streaming() { 95bool MediaPlayerState::streaming() const {
96 return isStreaming; 96 return isStreaming;
@@ -98,3 +98,3 @@ bool MediaPlayerState::streaming() {
98 98
99bool MediaPlayerState::seekable() { 99bool MediaPlayerState::seekable() const {
100 return isSeekable; 100 return isSeekable;
@@ -102,3 +102,3 @@ bool MediaPlayerState::seekable() {
102 102
103bool MediaPlayerState::fullscreen() { 103bool MediaPlayerState::fullscreen() const {
104 return isFullscreen; 104 return isFullscreen;
@@ -106,3 +106,3 @@ bool MediaPlayerState::fullscreen() {
106 106
107bool MediaPlayerState::scaled() { 107bool MediaPlayerState::scaled() const {
108 return isScaled; 108 return isScaled;
@@ -110,3 +110,3 @@ bool MediaPlayerState::scaled() {
110 110
111bool MediaPlayerState::looping() { 111bool MediaPlayerState::looping() const {
112 return isLooping; 112 return isLooping;
@@ -114,3 +114,3 @@ bool MediaPlayerState::looping() {
114 114
115bool MediaPlayerState::shuffled() { 115bool MediaPlayerState::shuffled() const {
116 return isShuffled; 116 return isShuffled;
@@ -119,3 +119,3 @@ bool MediaPlayerState::shuffled() {
119 119
120bool MediaPlayerState::playlist() { 120bool MediaPlayerState::playlist() const {
121 return usePlaylist; 121 return usePlaylist;
@@ -123,3 +123,3 @@ bool MediaPlayerState::playlist() {
123 123
124bool MediaPlayerState::paused() { 124bool MediaPlayerState::paused() const {
125 return isPaused; 125 return isPaused;
@@ -127,3 +127,3 @@ bool MediaPlayerState::paused() {
127 127
128bool MediaPlayerState::playing() { 128bool MediaPlayerState::playing() const {
129 return isPlaying; 129 return isPlaying;
@@ -131,3 +131,3 @@ bool MediaPlayerState::playing() {
131 131
132bool MediaPlayerState::stop() { 132bool MediaPlayerState::stop() const {
133 return isStoped; 133 return isStoped;
@@ -135,3 +135,3 @@ bool MediaPlayerState::stop() {
135 135
136long MediaPlayerState::position() { 136long MediaPlayerState::position() const {
137 return curPosition; 137 return curPosition;
@@ -139,3 +139,3 @@ long MediaPlayerState::position() {
139 139
140long MediaPlayerState::length() { 140long MediaPlayerState::length() const {
141 return curLength; 141 return curLength;
@@ -143,3 +143,3 @@ long MediaPlayerState::length() {
143 143
144char MediaPlayerState::view() { 144char MediaPlayerState::view() const {
145 return curView; 145 return curView;
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
@@ -52,15 +52,15 @@ public:
52 52
53 bool streaming(); 53 bool streaming() const;
54 bool seekable(); 54 bool seekable() const;
55 bool fullscreen(); 55 bool fullscreen() const;
56 bool scaled(); 56 bool scaled() const;
57 bool looping(); 57 bool looping() const;
58 bool shuffled(); 58 bool shuffled() const;
59 bool playlist(); 59 bool playlist() const;
60 bool paused(); 60 bool paused() const;
61 bool playing(); 61 bool playing() const;
62 bool stop(); 62 bool stop() const;
63 long position(); 63 long position() const;
64 long length(); 64 long length() const;
65 char view(); 65 char view() const;
66 66