Skip to content
Snippets Groups Projects
Commit ea16db52 authored by hjk's avatar hjk Committed by hjk
Browse files

qt4projectmanager: replace <QtGui/QApplication> in template by <QApplication>


It's more portable nowadays.

Change-Id: I4f6c00e1758a34ab83a378ce8335664ae93a2f40
Reviewed-by: default avatarhjk <qthjk@ovi.com>
parent 52112565
No related branches found
No related tags found
No related merge requests found
......@@ -262,7 +262,7 @@ bool GuiAppWizard::parametrizeTemplate(const QString &templatePath, const QStrin
return false;
QString contents = QString::fromUtf8(reader.data());
contents.replace(QLatin1String("%QAPP_INCLUDE%"), QLatin1String("QtGui/QApplication"));
contents.replace(QLatin1String("%QAPP_INCLUDE%"), QLatin1String("QApplication"));
contents.replace(QLatin1String("%INCLUDE%"), params.headerFileName);
contents.replace(QLatin1String("%CLASS%"), params.className);
contents.replace(QLatin1String("%BASECLASS%"), params.baseClassName);
......
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