diff options
author | John Fultz <jfultz@wolfram.com> | 2019-07-21 02:06:00 -0500 |
---|---|---|
committer | John Fultz <jfultz@wolfram.com> | 2019-07-21 02:06:00 -0500 |
commit | b67605814738d17484e508d037b8b1f09c27cab6 (patch) | |
tree | 9584efaa02ac17a1e0dd91b9b36797441c3cf593 /quacker/history.cpp | |
parent | 592be355923ea0fae3630af6fe3ba8f11523d9e4 (diff) |
Visual C++ compiler warning fixes.
Mostly signed/unsigned/size_t mismatches, except for one
case treating a bool as an integer.
Diffstat (limited to 'quacker/history.cpp')
-rw-r--r-- | quacker/history.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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()); |