Skip to content
Snippets Groups Projects
  1. Jul 09, 2013
  2. Jun 24, 2013
  3. Jun 20, 2013
  4. May 29, 2013
  5. May 27, 2013
  6. May 22, 2013
  7. May 21, 2013
  8. May 07, 2013
  9. Apr 11, 2013
  10. Apr 03, 2013
  11. Apr 02, 2013
  12. Mar 12, 2013
  13. Feb 19, 2013
  14. Jan 29, 2013
  15. Jan 16, 2013
  16. Jan 08, 2013
    • Orgad Shaneh's avatar
      Remove braces for single lines of conditions · 29a93998
      Orgad Shaneh authored
      
      #!/usr/bin/env ruby
      
      Dir.glob('**/*.cpp') { |file|
        # skip ast (excluding paste, astpath, and canv'ast'imer)
        next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i
        s = File.read(file)
        next if s.include?('qlalr')
        orig = s.dup
        s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m|
          res = $&
          if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces
            res
          else
            res.gsub!('} else', 'else')
            res.gsub!(/\n +} *\n/m, "\n")
            res.gsub(/ *{$/, '')
          end
        }
        s.gsub!(/ *$/, '')
        File.open(file, 'wb').write(s) if s != orig
      }
      
      Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc
      Reviewed-by: default avatarhjk <qthjk@ovi.com>
      29a93998
  17. Dec 28, 2012
  18. Dec 26, 2012
  19. Dec 21, 2012
    • Orgad Shaneh's avatar
      BinEditor: Fix selection · b9511fe1
      Orgad Shaneh authored
      
      * Last column is not selectable using the mouse
      * Last byte is not selectable at all
      
      Task-number: QTCREATORBUG-5209
      Change-Id: I9b87819818bb3dab80ef2803208391599d206f1f
      Reviewed-by: default avatarhjk <qthjk@ovi.com>
      b9511fe1
  20. Dec 20, 2012
  21. Nov 27, 2012
  22. Nov 20, 2012
  23. Oct 05, 2012
  24. Oct 03, 2012
  25. Oct 01, 2012
  26. Sep 27, 2012
  27. Sep 18, 2012
Loading