forked from qt-creator/qt-creator
		
	CDB: Case-normalize file names returned by CDB
Fixing various problems with breakpoints and opened files caused by CDB returning lower-case file names. Task-number: QTCREATORBUG-438 Reviewed-by: hjk <qtc-committer@nokia.com> Acked-by: mariusSO <qt-info@nokia.com>
This commit is contained in:
		| @@ -625,12 +625,14 @@ void CdbDebugEngine::startDebugger(const QSharedPointer<DebuggerStartParameters> | ||||
| { | ||||
|     if (debugCDBExecution) | ||||
|         qDebug() << "startDebugger" << *sp; | ||||
|     CDBBreakPoint::clearNormalizeFileNameCache(); | ||||
|     setState(AdapterStarting, Q_FUNC_INFO, __LINE__); | ||||
|     m_d->checkVersion(); | ||||
|     if (m_d->m_hDebuggeeProcess) { | ||||
|         warning(QLatin1String("Internal error: Attempt to start debugger while another process is being debugged.")); | ||||
|         setState(AdapterStartFailed, Q_FUNC_INFO, __LINE__); | ||||
|         emit startFailed(); | ||||
|         return; | ||||
|     } | ||||
|     m_d->clearDisplay(); | ||||
|     m_d->m_inferiorStartupComplete = false; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user