1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
#!/usr/bin/perl -w
# Laurent Montel <montel@kde.org> (2014)
# KSplashScreen => QSplashScreen
# find -iname "*.cpp" -o -iname "*.h" |xargs kde-dev-scripts/kf5/convert-ksplashscreen.pl
use strict;
use File::Basename;
use lib dirname($0);
use functionUtilkde;
foreach my $file (@ARGV) {
my $modified;
open(my $FILE, "<", $file) or warn "We can't open file $file:$!\n";
my @l = map {
my $orig = $_;
s/\bKSplashScreen\b/QSplashScreen/g;
s/\<KSplashScreen\b\>/\<QSplashScreen>/ =~ /#include/ ;
s/\<ksplashscreen.h\>/\<QSplashScreen>/ =~ /#include/ ;
$modified ||= $orig ne $_;
$_;
} <$FILE>;
if ($modified) {
open (my $OUT, ">", $file);
print $OUT @l;
close ($OUT);
}
}
functionUtilkde::diffFile( "@ARGV" );
|