Rename 'unjoinable' games to 'unavailable'

This commit is contained in:
Daenyth 2011-12-04 12:25:51 -05:00
parent edd429d874
commit 86ae8a47a8
4 changed files with 14 additions and 14 deletions

View file

@ -31,10 +31,10 @@ class GamesProxyModel : public QSortFilterProxyModel {
Q_OBJECT
private:
ServerInfo_User *ownUser;
bool unjoinableGamesVisible;
bool unavailableGamesVisible;
public:
GamesProxyModel(QObject *parent = 0, ServerInfo_User *_ownUser = 0);
void setUnjoinableGamesVisible(bool _unjoinableGamesVisible);
void setUnavailableGamesVisible(bool _unavailableGamesVisible);
protected:
bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const;
};