Skip to content
  • Thomas Zander's avatar
    Thanks to the new kDebug stuff, which is based on qDebug, we no longer · cf7bde75
    Thomas Zander authored
    need to pass an endline and there will be a space placed between
    arguments automatically.
    This means that everywhere we added those manually we get duplicates, so
    lets get rid of those.
    
    oh; here is the perl script I used; (regexps rock!)
    
    #!/usr/bin/perl -ni
    
    s/(kDebug\s*\(.*?)(\s*<<\s*endl\s*;)/$1;/;
    while(s/(kDebug\s*\(.*)((\\n|\s+)\")/$1"/s) {}
    print $_;
    
    svn path=/trunk/koffice/; revision=694641
    cf7bde75