diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2012-12-16 15:34:27 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2012-12-16 15:34:27 +0000 |
| commit | 596a532c6c54271054354dab50da77aac888fceb (patch) | |
| tree | 1d41e1401184116c207319c6a63c048623b830b2 /src/qmmpui/playlistparser.h | |
| parent | c1a4fb079ab772798cb068003da414ba1100f687 (diff) | |
| download | qmmp-596a532c6c54271054354dab50da77aac888fceb.tar.gz qmmp-596a532c6c54271054354dab50da77aac888fceb.tar.bz2 qmmp-596a532c6c54271054354dab50da77aac888fceb.zip | |
renamed playlist format class
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3075 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/playlistparser.h')
| -rw-r--r-- | src/qmmpui/playlistparser.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/qmmpui/playlistparser.h b/src/qmmpui/playlistparser.h index fbe15996c..6381eaefc 100644 --- a/src/qmmpui/playlistparser.h +++ b/src/qmmpui/playlistparser.h @@ -26,7 +26,7 @@ /*! @brief The PlaylistParser class provides a simple api to access playlist format plugins. * @author Ilya Kotov <forkotov02@hotmail.ru> */ -class PlaylistParser : public QObject +class PlayListParser : public QObject { Q_OBJECT public: @@ -34,11 +34,11 @@ public: * Object constructor, * @param parent Parent object */ - PlaylistParser(QObject *parent); + PlayListParser(QObject *parent); /*! * Destructor */ - ~PlaylistParser(); + ~PlayListParser(); /*! * Returns a list of supported file extensions. */ @@ -50,21 +50,21 @@ public: /*! * Returns a list of the installed playlist formats. */ - QList<PlaylistFormat*> formats(); + QList<PlayListFormat*> formats(); /*! * Returns a pointer to the object's instance. */ - static PlaylistParser* instance(); + static PlayListParser* instance(); /*! * Finds playlist format by file path \b filePath * Returns \b 0 if file \b filePath is unsupported. */ - PlaylistFormat *findByPath(const QString &filePath); + PlayListFormat *findByPath(const QString &filePath); private: void loadExternalPlaylistFormats(); - QList<PlaylistFormat*> m_formats; - static PlaylistParser* m_instance; + QList<PlayListFormat*> m_formats; + static PlayListParser* m_instance; }; |
