summaryrefslogtreecommitdiffstats
path: root/bin/syncqt
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2013-01-08 16:06:35 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-01-30 13:50:33 +0100
commitd1965abaa1e936151dee74952bcc3178af0192d6 (patch)
treec80c12c981deefa55f852660878c809f48647f32 /bin/syncqt
parent393fcf69dc9efc5f990fc37e2205112ae4620562 (diff)
purge broken line continuation parsing
it would have taken only the last line, which is clearly wrong. as nobody noticed this, the handling is clearly not needed. Change-Id: I6f4f45ce8c90cb9b0ef60abbaa5ed49b54d8b47d Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'bin/syncqt')
-rwxr-xr-xbin/syncqt6
1 files changed, 0 insertions, 6 deletions
diff --git a/bin/syncqt b/bin/syncqt
index c6e22aa63f..3e7aea96a5 100755
--- a/bin/syncqt
+++ b/bin/syncqt
@@ -195,12 +195,6 @@ sub classNames {
chomp $line;
chop $line if ($line =~ /\r$/);
if($line =~ /^\#/) {
- if($line =~ /\\$/) {
- while($line = <F>) {
- chomp $line;
- last unless($line =~ /\\$/);
- }
- }
return @ret if($line =~ m/^#pragma qt_sync_stop_processing/);
push(@ret, $1) if($line =~ m/^#pragma qt_class\(([^)]*)\)[\r\n]*$/);
$line = 0;