Remove unused function.

This commit is contained in:
Jeffrey Oliver 2015-01-02 17:07:30 -08:00
parent f1803fe879
commit 1e78596dfa
2 changed files with 0 additions and 9 deletions

View file

@ -113,10 +113,6 @@ void DlgFilterGames::actOk() {
accept();
}
QString DlgFilterGames::hashGameType(const QString &gameType) const {
return QCryptographicHash::hash(gameType.toUtf8(), QCryptographicHash::Md5).toHex();
}
bool DlgFilterGames::getUnavailableGamesVisible() const
{
return unavailableGamesVisibleCheckBox->isChecked();

View file

@ -25,11 +25,6 @@ private:
// This needs a const someplace
const GamesProxyModel *gamesProxyModel;
/*
* The game type might contain special characters, so to use it in
* QSettings we just hash it.
*/
QString hashGameType(const QString &gameType) const;
private slots:
void actOk();
public: