From b67605814738d17484e508d037b8b1f09c27cab6 Mon Sep 17 00:00:00 2001 From: John Fultz Date: Sun, 21 Jul 2019 02:06:00 -0500 Subject: Visual C++ compiler warning fixes. Mostly signed/unsigned/size_t mismatches, except for one case treating a bool as an integer. --- quacker/history.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'quacker/history.cpp') diff --git a/quacker/history.cpp b/quacker/history.cpp index c00ca9f..30a5361 100644 --- a/quacker/history.cpp +++ b/quacker/history.cpp @@ -57,7 +57,7 @@ void History::historyChanged(const Quackle::History &history) rowLabels.push_back(tr("Final")); m_tableWidget->setRowCount(rowLabels.size()); - m_tableWidget->setColumnCount(players.size()); + m_tableWidget->setColumnCount((int)players.size()); Quackle::PlayerList currentScores(lastPosition.endgameAdjustedScores()); -- cgit v1.2.3