Skip to content
Snippets Groups Projects
  1. Apr 18, 2013
  2. Apr 11, 2013
  3. Apr 05, 2013
  4. Mar 22, 2013
  5. Feb 20, 2013
  6. Feb 07, 2013
  7. Jan 29, 2013
  8. Jan 28, 2013
  9. 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
  10. Dec 20, 2012
  11. Nov 02, 2012
  12. Oct 05, 2012
  13. Sep 25, 2012
  14. Sep 18, 2012
  15. Sep 05, 2012
  16. Sep 04, 2012
    • Tobias Hunger's avatar
      s/profile/kit/ · 8ba422d0
      Tobias Hunger authored
      
      * Rename profiles to kits.
      * Update some strings:
         * projects mode has a Kits tab, not a Targets tab.
         * " Settings" was dropped from the sub-tabs of the Kits tab
         * menu entry "Build/Open Build/Run Target Selector" was renamed
           to "Build/Open Build and Run Kits Selector".
         * Use "Kit" instead of "Target" in miniprojecttargetselector.
           (The class was not renamed as it does indeed select targets,
            not kits)
      
      Change-Id: I0727e086e2dfa0e8aaaf89fdc6f2e3596c7a4314
      Reviewed-by: default avatarEike Ziller <eike.ziller@nokia.com>
      8ba422d0
  17. Aug 23, 2012
    • Friedemann Kleint's avatar
      Debugger: Improve engine detection. · 78aa94c8
      Friedemann Kleint authored
      
      Remove the RunConfiguration parameter from guessCppEngineType()
      and use the DebuggerStartParameter::toolChainAbi only.
      
      Use fillParameter() to set the debugger command and toolchain
      in order to prevent mismatches.
      
      Add logic trying to figure out the profile to fillParameters()
      in case the profile passed in is 0 for the command line cases.
      
      Use CDB matcher for post mortem and Remote CDB, fix it to
      prefer 64bit CDB on 64bit OS.
      
      Change-Id: Icedc3883fe15660303060498ab609957e6d01cd1
      Reviewed-by: default avatarhjk <qthjk@ovi.com>
      78aa94c8
  18. Aug 16, 2012
  19. Aug 14, 2012
  20. Aug 13, 2012
  21. Aug 12, 2012
  22. Jul 19, 2012
  23. Jun 28, 2012
  24. Jun 21, 2012
    • Tobias Hunger's avatar
      Profile introduction · 24314562
      Tobias Hunger authored
      
      Introduce Profiles to store sets of values that describe a system/device.
      
      These profiles are held by a target, getting rid of much of the information
      stored in the Build-/Run-/DeployConfigurations, greatly simplifying those.
      
      This is a squash of the wip/profile branch which has been on gerrit for a
      while, rebased to current master.
      
      Change-Id: I25956c8dd4d1962b2134bfaa8a8076ae3909460f
      Reviewed-by: default avatarDaniel Teske <daniel.teske@nokia.com>
      24314562
  25. Jun 13, 2012
  26. Jun 06, 2012
  27. Jun 05, 2012
  28. May 18, 2012
  29. Apr 24, 2012
  30. Apr 17, 2012
Loading