Skip to content
Snippets Groups Projects
  1. Mar 10, 2016
  2. Feb 12, 2016
  3. Feb 10, 2016
  4. Feb 04, 2016
  5. Jan 19, 2016
  6. Jan 14, 2016
  7. Jan 13, 2016
  8. Nov 30, 2015
  9. Nov 23, 2015
  10. Oct 22, 2015
  11. Jul 06, 2015
  12. Jun 11, 2015
  13. Jun 09, 2015
  14. May 11, 2015
  15. May 08, 2015
  16. May 04, 2015
  17. Apr 13, 2015
  18. Apr 02, 2015
  19. Mar 25, 2015
  20. Mar 11, 2015
    • Hugues Delorme's avatar
      Vcs: fix missing icons in SubmitFileModel · 20a0b97e
      Hugues Delorme authored
      
      In SubmitFileModel, filetype icons are missing for not "overlaid" icons in
      Core::FileIconProvider. This is fixed by ensuring valid file paths are passed
      to QFileInfo. VcsBase::SubmitFileModel has now a "repositoryRoot" property
      so it can constructs absolute file paths.
      
      VcsBaseSubmitEditor::setFileModel() now relies on SubmitFileModel::repositoryRoot()
      instead of passing this info as annex parameter.
      
      Change-Id: Ie045c3a7b247a5b5d48d10aaaf67cb3fdcf9fa7e
      Reviewed-by: default avatarOrgad Shaneh <orgads@gmail.com>
      20a0b97e
  21. Mar 06, 2015
  22. Mar 05, 2015
  23. Feb 26, 2015
    • Orgad Shaneh's avatar
      Prefix duplicate names in Open Documents to make them unique · aee35662
      Orgad Shaneh authored
      
      If a document has a file name associated with it then the prefix is
      composed from path components (subdirectories), starting from the one
      where the file is located and going up the parents until the resulting
      name becomes unique among other open documents.
      
      If a document doesn't have an associated file name, then a sequential
      number (starting from 1) is appended to the display name of the
      document.
      
      This feature is useful when working with big projects that have lots
      of idendical file names across different subdirectories (e.g.
      Makefile.in, main.cpp, etc.) that need to be edited at the same
      time. It allows to easily recognize such a file when switching
      between documents in the editor, w/o the need to place the
      mouse pointer over the name entry to get its full path.
      
      Started-by: default avatarDmitriy Kuminov <coding@dmik.org>
      Task-number: QTCREATORBUG-10185
      Change-Id: I633ea6d9b9b4fce8b67335dbcce1bda29254efde
      Reviewed-by: default avatarEike Ziller <eike.ziller@theqtcompany.com>
      aee35662
    • Friedemann Kleint's avatar
      Clean exported headers of the TextEditor plugin. · fe2addf5
      Friedemann Kleint authored
      
      Change-Id: I1e7dd34ba5a51fb0b34d137dc03add4457b32ed1
      Reviewed-by: default avatarOrgad Shaneh <orgads@gmail.com>
      fe2addf5
  24. Feb 25, 2015
  25. Feb 17, 2015
  26. Feb 16, 2015
  27. 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
  28. Jan 29, 2015
  29. Jan 26, 2015
  30. Jan 22, 2015
  31. Jan 20, 2015
  32. Jan 19, 2015
  33. Jan 16, 2015
  34. Jan 15, 2015
  35. Jan 12, 2015
Loading