From 4865e7696a41bc8a369e7368154e89eada2fbef6 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Thu, 9 Apr 2015 19:38:07 +0300 Subject: [PATCH] Remove extra qualification. --- src/Dialog_CueImport.h | 2 +- src/Model_CueSheet.h | 2 +- src/Model_Progress.h | 2 +- src/PlaylistImporter.h | 2 +- src/Registry_Decoder.h | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Dialog_CueImport.h b/src/Dialog_CueImport.h index 45cbfa9a..09b48128 100644 --- a/src/Dialog_CueImport.h +++ b/src/Dialog_CueImport.h @@ -47,7 +47,7 @@ public: int exec(void); protected: - void CueImportDialog::showEvent(QShowEvent *event); + void showEvent(QShowEvent *event); private slots: void browseButtonClicked(void); diff --git a/src/Model_CueSheet.h b/src/Model_CueSheet.h index a429c852..df45e960 100644 --- a/src/Model_CueSheet.h +++ b/src/Model_CueSheet.h @@ -61,7 +61,7 @@ public: void clearData(void); //External API - int CueSheetModel::getFileCount(void); + int getFileCount(void); QString getFileName(int fileIndex); int getTrackCount(int fileIndex); const AudioFileModel_MetaInfo *getTrackInfo(int fileIndex, int trackIndex); diff --git a/src/Model_Progress.h b/src/Model_Progress.h index f0344f2d..d5faa765 100644 --- a/src/Model_Progress.h +++ b/src/Model_Progress.h @@ -69,7 +69,7 @@ public: const QStringList &getLogFile(const QModelIndex &index) const; const QUuid &getJobId(const QModelIndex &index) const; const JobState getJobState(const QModelIndex &index) const; - const QIcon &ProgressModel::getIcon(ProgressModel::JobState state) const; + const QIcon &getIcon(ProgressModel::JobState state) const; void restoreHiddenItems(void); public slots: diff --git a/src/PlaylistImporter.h b/src/PlaylistImporter.h index 9d7c2b5c..a42a2f32 100644 --- a/src/PlaylistImporter.h +++ b/src/PlaylistImporter.h @@ -52,5 +52,5 @@ private: static playlist_t isPlaylist(const QString &fileName); static void fixFilePath(QFileInfo &filename, const QDir &baseDir, const QDir &rootDir); - static QString &PlaylistImporter::unescapeXml(QString &str); + static QString &unescapeXml(QString &str); }; diff --git a/src/Registry_Decoder.h b/src/Registry_Decoder.h index 5a267160..b7535ae4 100644 --- a/src/Registry_Decoder.h +++ b/src/Registry_Decoder.h @@ -36,5 +36,5 @@ class DecoderRegistry : public QObject public: static void configureDecoders(const SettingsModel *settings); static AbstractDecoder *lookup(const QString &containerType, const QString &containerProfile, const QString &formatType, const QString &formatProfile, const QString &formatVersion); - static QStringList DecoderRegistry::getSupportedTypes(void); + static QStringList getSupportedTypes(void); };