forked from qt-creator/qt-creator
Debugger: Make kit parameter in fillParameters() non-optional
Change-Id: I1b4dde1a63c8e2eb030cab3580abed845b270631 Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -604,7 +604,7 @@ private:
|
|||||||
const char m_wordWidth;
|
const char m_wordWidth;
|
||||||
};
|
};
|
||||||
|
|
||||||
bool fillParameters(DebuggerStartParameters *sp, const Kit *kit /* = 0 */, QString *errorMessage /* = 0 */)
|
bool fillParameters(DebuggerStartParameters *sp, const Kit *kit, QString *errorMessage /* = 0 */)
|
||||||
{
|
{
|
||||||
if (!kit) {
|
if (!kit) {
|
||||||
// This code can only be reached when starting via the command line
|
// This code can only be reached when starting via the command line
|
||||||
|
|||||||
@@ -141,7 +141,7 @@ public:
|
|||||||
|
|
||||||
namespace Internal {
|
namespace Internal {
|
||||||
|
|
||||||
bool fillParameters(DebuggerStartParameters *sp, const ProjectExplorer::Kit *kit = 0, QString *errorMessage = 0);
|
bool fillParameters(DebuggerStartParameters *sp, const ProjectExplorer::Kit *kit, QString *errorMessage = 0);
|
||||||
|
|
||||||
} // namespace Internal
|
} // namespace Internal
|
||||||
} // namespace Debugger
|
} // namespace Debugger
|
||||||
|
|||||||
Reference in New Issue
Block a user