forked from qt-creator/qt-creator
Removal of Symbian support
Qt Creator's support for Symbian was at its peak in version 2.4.x. Nobody really verified it in Qt Creator 2.5 or 2.6. It is most likely rotten. Let's remove it! Also, the Symbian support code was spread throughout the whole Qt Creator code base. The plugin interfaces evolved in the meantime and target platforms like Android or QNX have 99% of their code in separate plugins. In case anyone wants to revive Symbian support in Qt Creator, please create a plugin for it. Change-Id: I56a758a3e2fd5b8c64d9aeb8f63d8e916c4883be Reviewed-by: Alessandro Portale <alessandro.portale@nokia.com>
This commit is contained in:
@@ -179,8 +179,8 @@
|
||||
\brief Base class of a debugger engine.
|
||||
|
||||
Note: the Debugger process itself and any helper processes like
|
||||
gdbserver, the CODA client etc are referred to as 'Engine',
|
||||
whereas the debugged process is referred to as 'Inferior'.
|
||||
gdbserver are referred to as 'Engine', whereas the debugged process
|
||||
is referred to as 'Inferior'.
|
||||
|
||||
Transitions marked by '---' are done in the individual engines.
|
||||
Transitions marked by '+-+' are done in the base DebuggerEngine.
|
||||
@@ -2465,12 +2465,6 @@ static QString formatStartParameters(DebuggerStartParameters &sp)
|
||||
if (!sp.workingDirectory.isEmpty())
|
||||
str << "Directory: " << QDir::toNativeSeparators(sp.workingDirectory)
|
||||
<< '\n';
|
||||
if (sp.executableUid) {
|
||||
str << "UID: 0x";
|
||||
str.setIntegerBase(16);
|
||||
str << sp.executableUid << '\n';
|
||||
str.setIntegerBase(10);
|
||||
}
|
||||
}
|
||||
QString cmd = sp.debuggerCommand;
|
||||
if (!cmd.isEmpty())
|
||||
|
||||
Reference in New Issue
Block a user