Merge pull request #3571 from rukai/dolphinQtVisualStudio

DolphinQt2 Builds on Visual Studio
This commit is contained in:
Matthew Parlane
2016-05-12 22:27:18 +12:00
6 changed files with 346 additions and 4 deletions

View File

@ -141,7 +141,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)