Skip to content
Snippets Groups Projects
Commit af81369b authored by Alessandro Portale's avatar Alessandro Portale
Browse files

Code cleanup.

Remove the code which handled the "QML_IMPORT_PATH" define in
the .pro file (actually, it did not even handle it, since the
line was commented).
parent 1cce35ec
No related branches found
No related tags found
No related merge requests found
......@@ -224,11 +224,8 @@ void QtQuickApp::handleCurrentProFileTemplateLine(const QString &line,
QTextStream &proFileTemplate, QTextStream &proFile,
bool &commentOutNextLine) const
{
if (line.contains(QLatin1String("# QMLJSDEBUGGER"))) {
// ### disabled for now; figure out the private headers problem first.
//commentOutNextLine = true;
Q_UNUSED(commentOutNextLine)
} else if (line.contains(QLatin1String("# QML_IMPORT_PATH"))) {
Q_UNUSED(commentOutNextLine)
if (line.contains(QLatin1String("# QML_IMPORT_PATH"))) {
QString nextLine = proFileTemplate.readLine(); // eats 'QML_IMPORT_PATH ='
if (!nextLine.startsWith(QLatin1String("QML_IMPORT_PATH =")))
return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment