Skip to content
Snippets Groups Projects
  1. Jan 19, 2016
  2. Dec 09, 2015
  3. Aug 31, 2015
  4. Jun 09, 2015
  5. Mar 12, 2015
  6. Feb 26, 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. Jan 16, 2015
  9. Jan 13, 2015
  10. Jan 12, 2015
  11. Oct 15, 2014
  12. Oct 09, 2014
  13. Oct 06, 2014
  14. Sep 30, 2014
    • hjk's avatar
      TextEditor: Simplify HoverHandler handling · beef4807
      hjk authored
      
      The editor factories are already a central place to associate
      hover handlers with editors, no need to retrieve them later from
      the object pool again. This also allows for easy handling of
      more than one active handler per editor.
      
      Change-Id: Ie716b96f5ce6b526ee897468635e03e909d81538
      Reviewed-by: default avatarDavid Schulz <david.schulz@digia.com>
      beef4807
  15. Sep 29, 2014
  16. Sep 25, 2014
  17. Sep 12, 2014
  18. Sep 09, 2014
    • hjk's avatar
      TextEditor: Merge some "assist" related classes · 0edefc4c
      hjk authored
      
      Simplifies the code base by removing one level of unused
      and unneeded abstraction.
      
      - Merge {I,Default}AssistInterface to AssistInterface
      - Merge {IAssist,Basic}ProposalItem to AssistProposalItem
      - Merge {IGenericProposal,BasicProposalItemList}Model to GenericProposalModel
      
      Change-Id: I54ee7b095427383d67a00fc1d87c3808c21d812d
      Reviewed-by: default avatarNikolai Kosjar <nikolai.kosjar@digia.com>
      0edefc4c
  19. Sep 04, 2014
  20. Sep 03, 2014
  21. Sep 02, 2014
  22. Sep 01, 2014
  23. Aug 28, 2014
  24. Aug 27, 2014
  25. Aug 25, 2014
  26. Aug 22, 2014
  27. Aug 21, 2014
  28. Aug 20, 2014
  29. Aug 19, 2014
  30. Aug 04, 2014
  31. Aug 01, 2014
  32. Jul 31, 2014
Loading