mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 22:00:05 +00:00 
			
		
		
		
	citra_qt: silent sign comparison warning
🖕Qt
			
			
This commit is contained in:
		
							parent
							
								
									e689847b11
								
							
						
					
					
						commit
						f7607c820d
					
				
					 2 changed files with 4 additions and 3 deletions
				
			
		|  | @ -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) { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue