diff options
author | Montel Laurent <laurent.montel@kdab.com> | 2015-01-30 10:19:13 +0100 |
---|---|---|
committer | hjk <hjk@theqtcompany.com> | 2015-01-30 09:40:20 +0000 |
commit | 0df67801765927ad3dbe0715fa46b4cdc09c6ce2 (patch) | |
tree | e56a4467c9f700f132438a6d73168365a9a2c14a /src/plugins/autotoolsprojectmanager/makefileparser.cpp | |
parent | f479c1979e0919eec2f02d41c6db7573a4454a3a (diff) | |
download | qt-creator-0df67801765927ad3dbe0715fa46b4cdc09c6ce2.tar.gz |
Convert to new connect api
Change-Id: I80aad51340bcde953763dec36cf989d6e19d4cd0
Reviewed-by: hjk <hjk@theqtcompany.com>
Diffstat (limited to 'src/plugins/autotoolsprojectmanager/makefileparser.cpp')
-rw-r--r-- | src/plugins/autotoolsprojectmanager/makefileparser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/autotoolsprojectmanager/makefileparser.cpp b/src/plugins/autotoolsprojectmanager/makefileparser.cpp index f07a187f98..b0369973eb 100644 --- a/src/plugins/autotoolsprojectmanager/makefileparser.cpp +++ b/src/plugins/autotoolsprojectmanager/makefileparser.cpp @@ -292,7 +292,7 @@ void MakefileParser::parseSubDirs() continue; MakefileParser parser(subDirMakefile); - connect(&parser, SIGNAL(status(QString)), this, SIGNAL(status(QString))); + connect(&parser, &MakefileParser::status, this, &MakefileParser::status); const bool success = parser.parse(); // Don't return, try to parse as many sub directories |