Skip to content
Snippets Groups Projects
  1. Jan 19, 2016
  2. Jun 10, 2015
    • Eike Ziller's avatar
      Move "open" from IEditor to IDocument · 4f927e4c
      Eike Ziller authored
      
      For non-editor documents it currently is not used, but for editors it
      makes more sense to have that on the document instead of the editor.
      Most actual implementations of "open" were done in the documents already
      anyhow, because it is needed for reloading.
      
      Change-Id: I29d4df2078995cbe80172b51a9bebeecb3afad3c
      Reviewed-by: default avatarDavid Schulz <david.schulz@theqtcompany.com>
      4f927e4c
  3. May 15, 2015
  4. Mar 20, 2015
  5. Mar 05, 2015
  6. Feb 26, 2015
  7. Feb 04, 2015
    • Orgad Shaneh's avatar
      C++: Remove unneeded qualifications · 65e7db42
      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: I6fbe13ddc1485efe95c3156097bf41d90c0febac
      Reviewed-by: default avatarNikolai Kosjar <nikolai.kosjar@theqtcompany.com>
      65e7db42
  8. Jan 16, 2015
  9. Dec 19, 2014
  10. Nov 25, 2014
  11. Oct 09, 2014
  12. Sep 26, 2014
  13. Aug 27, 2014
  14. Aug 19, 2014
  15. Aug 01, 2014
  16. Jul 30, 2014
  17. Jun 02, 2014
  18. May 23, 2014
  19. Apr 04, 2014
  20. Jan 10, 2014
  21. Jan 08, 2014
  22. Jan 07, 2014
  23. Jun 25, 2013
  24. Jun 11, 2013
  25. Apr 10, 2013
  26. Apr 03, 2013
  27. Feb 12, 2013
  28. Jan 24, 2013
Loading