forked from qt-creator/qt-creator
		
	Android: Modernize
modernize-use-auto modernize-use-nullptr modernize-use-override modernize-use-using modernize-use-equals-default modernize-use-transparent-functors Change-Id: I6c9e567edf16cf436c0e0c1239b40f74574a1096 Reviewed-by: Vikas Pachdha <vikas.pachdha@qt.io>
This commit is contained in:
		
				
					committed by
					
						 Vikas Pachdha
						Vikas Pachdha
					
				
			
			
				
	
			
			
			
						parent
						
							02a759d4f5
						
					
				
				
					commit
					be5c228e5b
				
			| @@ -234,10 +234,7 @@ AndroidAvdManager::AndroidAvdManager(const AndroidConfig &config): | ||||
|  | ||||
| } | ||||
|  | ||||
| AndroidAvdManager::~AndroidAvdManager() | ||||
| { | ||||
|  | ||||
| } | ||||
| AndroidAvdManager::~AndroidAvdManager() = default; | ||||
|  | ||||
| void AndroidAvdManager::launchAvdManagerUiTool() const | ||||
| { | ||||
| @@ -296,7 +293,7 @@ bool AndroidAvdManager::startAvdAsync(const QString &avdName) const | ||||
|                               .arg(m_config.emulatorToolPath().toString())); | ||||
|         return false; | ||||
|     } | ||||
|     QProcess *avdProcess = new QProcess(); | ||||
|     auto avdProcess = new QProcess(); | ||||
|     avdProcess->setReadChannelMode(QProcess::MergedChannels); | ||||
|     QObject::connect(avdProcess, | ||||
|                      static_cast<void (QProcess::*)(int)>(&QProcess::finished), | ||||
|   | ||||
		Reference in New Issue
	
	Block a user