author | llornkcor <llornkcor> | 2002-07-29 23:29:17 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-07-29 23:29:17 (UTC) |
commit | 3507cf869b041872b0547bb595c1cbf5c0501cb9 (patch) (unidiff) | |
tree | f187bfa8219c598b49621b18345bf89be8df654a /noncore | |
parent | dc51bed21fa32d27f7b8426682746f1726888035 (diff) | |
download | opie-3507cf869b041872b0547bb595c1cbf5c0501cb9.zip opie-3507cf869b041872b0547bb595c1cbf5c0501cb9.tar.gz opie-3507cf869b041872b0547bb595c1cbf5c0501cb9.tar.bz2 |
fix not pointer
-rw-r--r-- | noncore/multimedia/opieplayer2/audiowidget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/multimedia/opieplayer2/audiowidget.h b/noncore/multimedia/opieplayer2/audiowidget.h index 3ebec5b..9bc924d 100644 --- a/noncore/multimedia/opieplayer2/audiowidget.h +++ b/noncore/multimedia/opieplayer2/audiowidget.h | |||
@@ -50,7 +50,7 @@ class AudioWidget : public QWidget { | |||
50 | public: | 50 | public: |
51 | AudioWidget( QWidget* parent=0, const char* name=0, WFlags f=0 ); | 51 | AudioWidget( QWidget* parent=0, const char* name=0, WFlags f=0 ); |
52 | ~AudioWidget(); | 52 | ~AudioWidget(); |
53 | void setTickerText( const QString &text ) { songInfo->setText( text ); } | 53 | void setTickerText( const QString &text ) { songInfo.setText( text ); } |
54 | bool isStreaming; | 54 | bool isStreaming; |
55 | public slots: | 55 | public slots: |
56 | void updateSlider( long, long ); | 56 | void updateSlider( long, long ); |