mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	yuzu/applets/software_keyboard: std::move std::function instances where applicable
std::function instances can potentially allocate. std::moveing them prevents an avoidable allocation in that case.
This commit is contained in:
		
							parent
							
								
									fe2609cb77
								
							
						
					
					
						commit
						3fa2b218ac
					
				@ -129,13 +129,13 @@ QtSoftwareKeyboard::~QtSoftwareKeyboard() = default;
 | 
			
		||||
 | 
			
		||||
void QtSoftwareKeyboard::RequestText(std::function<void(std::optional<std::u16string>)> out,
 | 
			
		||||
                                     Core::Frontend::SoftwareKeyboardParameters parameters) const {
 | 
			
		||||
    text_output = out;
 | 
			
		||||
    text_output = std::move(out);
 | 
			
		||||
    emit MainWindowGetText(parameters);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void QtSoftwareKeyboard::SendTextCheckDialog(std::u16string error_message,
 | 
			
		||||
                                             std::function<void()> finished_check) const {
 | 
			
		||||
    this->finished_check = finished_check;
 | 
			
		||||
    this->finished_check = std::move(finished_check);
 | 
			
		||||
    emit MainWindowTextCheckDialog(error_message);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user