Skip to content
Snippets Groups Projects
  1. Apr 04, 2014
  2. Mar 18, 2014
  3. Mar 11, 2014
  4. Mar 05, 2014
  5. Feb 19, 2014
  6. Feb 12, 2014
    • Orgad Shaneh's avatar
      Clean up single namespace forward-declarations · 7ed15760
      Orgad Shaneh authored
      
      Done using the following ruby script:
      
      Dir.glob('**/*.h').each { |file|
        if File.file?(file)
          s = File.read(file)
          t = s.gsub(/^namespace .+ \{\n\s*class .*;\n\s*\}.*$/) { |m| m.gsub(/\n\s*/, ' ').gsub(/\s*\/\/.*$/, '') }
          if t != s
            puts file
            File.open(file, 'w').write(t)
          end
        end
      }
      
      Change-Id: Iffcb966e90eb8e1a625eccd5dd0b94f000ae368e
      Reviewed-by: default avatarhjk <hjk121@nokiamail.com>
      7ed15760
  7. Feb 11, 2014
  8. Feb 10, 2014
  9. Jan 08, 2014
  10. Dec 10, 2013
  11. Nov 29, 2013
  12. Oct 14, 2013
  13. Oct 10, 2013
  14. Oct 09, 2013
  15. Oct 01, 2013
  16. Sep 27, 2013
    • Tobias Hunger's avatar
      TargetSetupPage: Generalize the page · 921f86df
      Tobias Hunger authored
      
      Generalize the target setup page and move it into projectexplorer
      
      Move the qmake specific code into a projectimporter class with
      a specialization for qmake projects in the qt4projectmanager.
      
      This change depends heavily on the BuildConfigurationFactory cleanups
      done earlier and completes that change in such a way that generic
      build configuration factories are now in theory possible. The
      remaining problem is how to select the best factory of several that
      claim to be able to handle a kit and that is left for the next patch.
      
      Change-Id: I47134cb1938c52adebcdc1ddfe8dbf26abbbbeee
      Reviewed-by: default avatarDaniel Teske <daniel.teske@digia.com>
      921f86df
  17. Sep 17, 2013
    • Tobias Hunger's avatar
      BuildConfigurationFactory: Refactor code · d2adc303
      Tobias Hunger authored
      
      Refactor the code of the build configuration factories. The idea is to
      generalize the code so much that we can allow plugins to install
      custom build configuration factories for the platforms they support.
      
      To support this use case the following changes where done here:
       * BuildInfo class was introduced to describe one build configuration that
         can be created by a factory.
       * Factories report a list of BuildInfo to describe what they can produce.
         This fixes the need for factories to implicitly create one buildconfiguration
         and then create another one 'officially' to support debug and release build
         configurations to be set up for projects.
       * Do no longer work around factories to create build configurations.
      
      Change-Id: Ic372e4a9b5c582633b467d130538948472b89d91
      Reviewed-by: default avatarDaniel Teske <daniel.teske@digia.com>
      d2adc303
  18. Sep 03, 2013
  19. Aug 28, 2013
  20. Aug 21, 2013
  21. Aug 13, 2013
  22. Jul 22, 2013
  23. Jul 09, 2013
  24. Jul 08, 2013
    • Daniel Teske's avatar
      Project: Simplfy file adding/removing interface · cc7fe5ea
      Daniel Teske authored
      
      The filetype is only relevant for Qt4 projects. But even for Qt4 projects
      the file type is insufficient to decide where the file should be added.
      So remove the file type from the interface and let the projectmanagers
      themselves figure out what they want to do.
      
      Also fix
      Task-number: QTCREATORBUG-9688
      
      Change-Id: I02f7b1cd2e05efaf76e36fb9af34b109d4482f88
      Reviewed-by: default avatarTobias Hunger <tobias.hunger@digia.com>
      cc7fe5ea
  25. Jun 24, 2013
  26. Jun 07, 2013
  27. May 28, 2013
  28. May 27, 2013
    • Tobias Hunger's avatar
      Projects: Improve opening of projects · a52063ee
      Tobias Hunger authored
      
      Move logic to detect already open projects into ProjectExplorer itself,
      along with some check for the canonicalFilePath.
      
      Remove the same logic from the individual projectmanagers.
      
      Put check that the path is a file into project managers. So far all of
      them assume the project file to be a file (e.g. a xcode project manager
      would expect a directory though).
      
      Task-number: QTCREATORBUG-9350
      Change-Id: I3901958395e3c594c8cfba9a85dc7d3ec3334afb
      Reviewed-by: default avatarDaniel Teske <daniel.teske@digia.com>
      a52063ee
  29. May 22, 2013
  30. May 14, 2013
  31. May 02, 2013
  32. Apr 11, 2013
  33. Apr 10, 2013
Loading