Skip to content
Snippets Groups Projects
  1. Nov 22, 2013
  2. Oct 01, 2013
  3. Aug 22, 2013
  4. Aug 21, 2013
    • Przemyslaw Gorszkowski's avatar
      C++: wrong tooltip behind function without args · bf69b4c4
      Przemyslaw Gorszkowski authored
      
      Example code:
      float fun()
      {
          return 0;
      }
      
      Hovering in the area behind the function without args(but in the same line,
      in above example after "float fun()") will bring up tooltip with returned
      value of this function(in the above example it will be "float").
      
      Fixed by checking this special case after gathering results for tooltip
      and don't show confusing tooltip.
      
      Task-number: QTCREATORBUG-4780
      Change-Id: Iab2bacddf33a70d5ea941001a2dd317c824d9db5
      Reviewed-by: default avatarNikolai Kosjar <nikolai.kosjar@digia.com>
      bf69b4c4
  5. Jul 09, 2013
  6. Jun 11, 2013
  7. Apr 10, 2013
  8. Apr 08, 2013
  9. Apr 03, 2013
  10. Jan 29, 2013
  11. Jan 22, 2013
  12. Oct 11, 2012
  13. Oct 05, 2012
  14. Jul 19, 2012
  15. Mar 14, 2012
  16. Feb 20, 2012
  17. Feb 15, 2012
  18. Jan 26, 2012
  19. Jan 24, 2012
  20. Jan 23, 2012
    • Leandro Melo's avatar
      C++: Improve file accuracy when finding symbols · 466ea484
      Leandro Melo authored
      
      This patch introduces a priority-based mechanism when searching for certains
      symbols in the snapshot. The priority corresponds to how similar the file path
      from the "reference" symbol is to the file path from the "candidate" symbol.
      This solves a variety of issues when matching "equivalent" symbols but that
      are in another file/project, such as when following a function declaration,
      a forward class declaration, or adding a definition through a quickfix.
      
      There's now a symbol finder which will compute the "best" search order and cache
      the most recent results. A consequence is that following symbols in some cases
      is slower, but not apparently significatly.
      
      Note: The "find" functions were moved from the Snapshot to the new SymbolFinder
      class.
      
      Task-number: QTCREATORBUG-6697
      Task-number: QTCREATORBUG-6792
      
      Change-Id: Ia518f014275fec1f4d0cb3224bd4e06a9df6d557
      Reviewed-by: default avatarRoberto Raggi <roberto.raggi@nokia.com>
      466ea484
  21. Jan 13, 2012
  22. Jan 12, 2012
  23. Nov 03, 2011
  24. Sep 06, 2011
  25. Aug 25, 2011
  26. Jul 08, 2011
    • Leandro Melo's avatar
      C++ editor: Improve type hierarchy widget · 23decd9d
      Leandro Melo authored
      Now the type hierarchy widget will also show the classes
      derived from the selected one. For consistency the way
      the base classes are shown was changed too. The diagram
      below is an example from Creator's code when openining
      the type hierarchy for BaseTextEditorWidget:
      
      Bases
       +QObject
        +QWidget
         +...
           BaseTextEditorWidget
       +QPaintDevice
        +...
          BaseTextEditorWidget
      Derived
       +BaseTextEditorWidget
        +VCSBaseEditorWidget
          GitEditor
          MercurialEditor
          ...
         GLSLEditorWidget
         CppEditorWidget
         QmlJSTextEditorWidget
         ...
      
      Depending on the project and on the selected class the
      hierarchy widget might take a bit to be constructed.
      This should be improved later.
      
      Change-Id: Ifbdd1cbbba955a0bdf03297ff0e7620351b12dc5
      Reviewed-on: http://codereview.qt.nokia.com/883
      
      
      Reviewed-by: default avatarRoberto Raggi <roberto.raggi@nokia.com>
      23decd9d
  27. Jun 09, 2011
  28. May 06, 2011
  29. Apr 13, 2011
  30. Feb 22, 2011
    • hjk's avatar
      texteditor: merge ITextEditable into ITextEditor · f576ad9f
      hjk authored
      rename BastTextEditor->BaseTextEditorWidget, BaseTextEditorEditable->BaseTextEditor
      rename BaseTextEditor{,Widget} subclasses
      rename editableInterface->editorInterface
      rename createEditableInterface->createEditor
      minor cleanups after renamings
      f576ad9f
  31. Jan 17, 2011
  32. Jan 12, 2011
  33. Jan 04, 2011
  34. Dec 17, 2010
  35. Oct 01, 2010
  36. Sep 30, 2010
  37. Sep 24, 2010
Loading