Skip to content
Snippets Groups Projects
  1. Mar 03, 2015
  2. Feb 26, 2015
  3. Feb 23, 2015
  4. Feb 20, 2015
  5. Feb 19, 2015
  6. Feb 18, 2015
  7. Feb 06, 2015
    • Orgad Shaneh's avatar
      Misc: Remove unneeded qualifications · 74ed591d
      Orgad Shaneh authored
      
      Mostly done using the following ruby script:
      Dir.glob('**/*.cpp').each { |file|
        next if file =~ %r{src/shared/qbs|/qmljs/}
        s = File.read(file)
        s.scan(/^using namespace (.*);$/) {
          ns = $1
          t = s.gsub(/^(.*)\b#{ns}::((?!Const)[A-Z])/) { |m|
            before = $1
            char = $2
            if before =~ /"|\/\/|\\|using|SIGNAL|SLOT|Q_/
              m
            else
              before + char
            end
          }
          if t != s
            puts file
            File.open(file, 'w').write(t)
          end
        }
      }
      
      Change-Id: I919da493d0629b719d328e5e71c96a29d230dfd1
      Reviewed-by: default avatarChristian Kandeler <christian.kandeler@theqtcompany.com>
      Reviewed-by: default avatarhjk <hjk@theqtcompany.com>
      74ed591d
  8. Feb 04, 2015
  9. Jan 16, 2015
  10. Jan 12, 2015
  11. Dec 19, 2014
  12. Dec 03, 2014
  13. Nov 05, 2014
  14. Oct 09, 2014
  15. Oct 02, 2014
  16. Sep 26, 2014
  17. Jul 25, 2014
  18. Jul 24, 2014
  19. Jul 23, 2014
  20. Jul 18, 2014
  21. May 06, 2014
  22. Mar 28, 2014
  23. Mar 06, 2014
  24. Feb 20, 2014
  25. Jan 08, 2014
  26. Oct 10, 2013
  27. Sep 30, 2013
  28. Sep 11, 2013
  29. Aug 30, 2013
  30. Aug 16, 2013
  31. Aug 13, 2013
  32. Aug 12, 2013
Loading