Library-Wizard: Do not write module-include.

Remove baseClassModule which was used for that
purpose only.

Change-Id: Id86c9cfc160b76f936cc6b716a1e4c3e93a5261f
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
Friedemann Kleint
2013-02-11 12:41:34 +01:00
parent 101b1ecf71
commit 3a624a37a5
3 changed files with 1 additions and 11 deletions

View File

@@ -87,13 +87,7 @@ void LibraryParameters::generateCode(QtProjectParameters:: Type t,
// include base class header
if (!baseClassName.isEmpty()) {
QString include;
if (!baseClassModule.isEmpty()) {
include += baseClassModule;
include += QLatin1Char('/');
}
include += baseClassName;
Utils::writeIncludeFileDirective(include, true, headerStr);
Utils::writeIncludeFileDirective(baseClassName, true, headerStr);
headerStr << '\n';
}