f9143aa865
svn path=/trunk/KDE/kdelibs/; revision=957251
9 lines
166 B
Perl
Executable File
9 lines
166 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
while(<>) {
|
|
if ($_ =~ m/^\[.*\[Configuration\]\[PopupApplet\]$/) {
|
|
$_ =~ s/\[Configuration\]\[PopupApplet\]$/[PopupApplet]/;
|
|
}
|
|
print $_;
|
|
}
|