Skip to content
Snippets Groups Projects
  1. Apr 25, 2016
  2. Mar 17, 2016
  3. Jan 21, 2016
  4. Jan 19, 2016
  5. Jan 14, 2016
  6. Dec 04, 2015
  7. Nov 16, 2015
  8. Nov 09, 2015
  9. Nov 03, 2015
  10. Oct 30, 2015
  11. Sep 24, 2015
  12. Sep 08, 2015
  13. Jul 03, 2015
  14. Jun 11, 2015
  15. Jun 10, 2015
  16. Jun 09, 2015
  17. Jun 02, 2015
  18. Jun 01, 2015
  19. Apr 14, 2015
  20. Mar 05, 2015
  21. Feb 27, 2015
  22. Feb 17, 2015
  23. Feb 13, 2015
  24. 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
  25. Feb 02, 2015
  26. Jan 29, 2015
  27. Jan 20, 2015
  28. Jan 16, 2015
  29. Jan 15, 2015
  30. Jan 14, 2015
    • Daniel Teske's avatar
      Refactor ProjectExplorer::Node and remove NodesWatcher · 70c9c51e
      Daniel Teske authored
      
      The idea behind NodesWatcher was that it was the central place
      to catch node related signals, so that users didn't need to
      connect to each individual node and the nodes didn't need to
      be QObjects. Somehow Nodes ended up being QObjects anyway.
      
      Both the recently added ProjectTree and the FlatModels consume
      the signals the NodesWatcher sends. Unfortunately there's a
      ordering dependency between the ProjectTree and the FlatModels.
      
      This patch removes all NodesWatcher and instead makes the
      ProjectTree singleton the emitter of various project tree
      related signals. The ProjectTree also ensures that the ordering
      between the FlatModel and itself is taken into account.
      
      And it makes Node not derive from QObject, saving some memory
      in that process.
      
      Task-number: QTCREATORBUG-13756
      Change-Id: I8b0d357863f1dc1d2d440ce8172502594138b9fb
      Reviewed-by: default avatarTobias Hunger <tobias.hunger@theqtcompany.com>
      70c9c51e
  31. Jan 12, 2015
  32. Jan 09, 2015
  33. Dec 03, 2014
Loading