summaryrefslogtreecommitdiff
path: root/core/apps/embeddedkonsole/playlistselection.h
Unidiff
Diffstat (limited to 'core/apps/embeddedkonsole/playlistselection.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/embeddedkonsole/playlistselection.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/apps/embeddedkonsole/playlistselection.h b/core/apps/embeddedkonsole/playlistselection.h
index c307f14..f340124 100644
--- a/core/apps/embeddedkonsole/playlistselection.h
+++ b/core/apps/embeddedkonsole/playlistselection.h
@@ -19,25 +19,25 @@
19**********************************************************************/ 19**********************************************************************/
20#ifndef PLAY_LIST_SELECTION_H 20#ifndef PLAY_LIST_SELECTION_H
21#define PLAY_LIST_SELECTION_H 21#define PLAY_LIST_SELECTION_H
22 22
23 23
24#include <qlist.h> 24#include <qlist.h>
25#include <qlistview.h> 25#include <qlistview.h>
26#include <qpe/applnk.h> 26#include <qpe/applnk.h>
27 27
28class PlayListSelectionItem : public QListViewItem { 28class PlayListSelectionItem : public QListViewItem {
29public: 29public:
30 PlayListSelectionItem( QListView *parent, QString *f ) : QListViewItem( parent ), fl( f ) { 30 PlayListSelectionItem( QListView *parent, QString *f ) : QListViewItem( parent ), fl( f ) {
31 setText(0, *f ); 31 setText(0, *f );
32 } 32 }
33 33
34 ~PlayListSelectionItem() { 34 ~PlayListSelectionItem() {
35 }; 35 };
36 36
37 const QString *file() const { return fl; } 37 const QString *file() const { return fl; }
38 38
39private: 39private:
40 const QString *fl; 40 const QString *fl;
41}; 41};
42 42
43class PlayListSelection : public QListView { 43class PlayListSelection : public QListView {