Debugger: Make kit parameter in fillParameters() non-optional

Change-Id: I1b4dde1a63c8e2eb030cab3580abed845b270631
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
hjk
2013-05-27 13:07:02 +02:00
parent 2345fa35a7
commit 78cea9ee24
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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