Remove extra qualification.
This commit is contained in:
parent
8c5ff3d80d
commit
4865e7696a
@ -47,7 +47,7 @@ public:
|
||||
int exec(void);
|
||||
|
||||
protected:
|
||||
void CueImportDialog::showEvent(QShowEvent *event);
|
||||
void showEvent(QShowEvent *event);
|
||||
|
||||
private slots:
|
||||
void browseButtonClicked(void);
|
||||
|
@ -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);
|
||||
|
@ -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:
|
||||
|
@ -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);
|
||||
};
|
||||
|
@ -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);
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user