Merge pull request #4836 from wwylele/chatroom-sign

citra_qt: silent sign comparison warning
This commit is contained in:
Pengfei Zhu 2019-07-15 07:33:35 +08:00 committed by GitHub
commit 1d6c6a37a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View file

@ -148,7 +148,7 @@ void CheatDialog::OnRowSelected(int row, int column) {
ui->tableCheats->setCurrentCell(last_row, last_col);
return;
}
if (row < cheats.size()) {
if (static_cast<std::size_t>(row) < cheats.size()) {
if (newly_created) {
// Remove the newly created dummy item
newly_created = false;

View file

@ -406,8 +406,9 @@ void ChatRoom::SetPlayerList(const Network::RoomMember::MemberList& member_list)
}
void ChatRoom::OnChatTextChanged() {
if (ui->chat_message->text().length() > Network::MaxMessageSize)
ui->chat_message->setText(ui->chat_message->text().left(Network::MaxMessageSize));
if (ui->chat_message->text().length() > static_cast<int>(Network::MaxMessageSize))
ui->chat_message->setText(
ui->chat_message->text().left(static_cast<int>(Network::MaxMessageSize)));
}
void ChatRoom::PopupContextMenu(const QPoint& menu_location) {