Commit ad963ef0 authored by Joerg Bornemann's avatar Joerg Bornemann
Browse files

syncqt: fix false positives in header check

Restore the condition for deciding what a private header is from
fe383e04 to not check *_pch.h files and third party headers.
This amends commit eddb938c

.

Change-Id: Idc55269478e7f2c98fb7debceef8a53c3cb5c657
Reviewed-by: default avatarFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>
Reviewed-by: default avatarOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Showing with 4 additions and 1 deletion
...@@ -1005,7 +1005,10 @@ foreach my $lib (@modules_to_sync) { ...@@ -1005,7 +1005,10 @@ foreach my $lib (@modules_to_sync) {
my $iheader = $subdir . "/" . $header; my $iheader = $subdir . "/" . $header;
$iheader =~ s/^\Q$basedir\E/$out_basedir/ if ($shadow); $iheader =~ s/^\Q$basedir\E/$out_basedir/ if ($shadow);
if ($check_includes) { if ($check_includes) {
check_header($lib, $header, $iheader, $public_header, !$public_header && !$qpa_header); # We need both $public_header and $private_header because QPA headers count as neither
my $private_header = !$public_header && !$qpa_header
&& $header =~ /_p\.h$/ && $subdir !~ /3rdparty/;
check_header($lib, $header, $iheader, $public_header, $private_header);
} }
my @classes = $public_header && (!$minimal && $is_qt) ? classNames($iheader, \$clean_header) : (); my @classes = $public_header && (!$minimal && $is_qt) ? classNames($iheader, \$clean_header) : ();
if($showonly) { if($showonly) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment