DolphinQt Builds on Visual Studio

This commit is contained in:
rukai
2016-01-25 22:36:39 +11:00
committed by Rukai
parent 1f2b1caf42
commit 6349b88fae
6 changed files with 346 additions and 4 deletions

View File

@ -140,7 +140,7 @@ QString GameList::GetSelectedGame() const
QModelIndex model_index = proxy->mapToSource(sel_model->selectedIndexes()[0]);
return m_model->GetPath(model_index.row());
}
return QStringLiteral();
return QStringLiteral("");
}
void GameList::SetPreferredView(bool table)

View File

@ -7,7 +7,7 @@
#include "DolphinQt2/GameList/GameListModel.h"
#include "DolphinQt2/GameList/ListProxyModel.h"
static constexpr QSize LARGE_BANNER_SIZE(144, 48);
static QSize LARGE_BANNER_SIZE(144, 48);
ListProxyModel::ListProxyModel(QObject* parent)
: QSortFilterProxyModel(parent)