Skip to content
Snippets Groups Projects
  1. Jul 24, 2014
  2. Jul 01, 2014
  3. Jun 19, 2014
  4. Jun 18, 2014
    • Dale Marchand's avatar
      Fixed compilation error on RHEL 5.10. · ff52061e
      Dale Marchand authored
      
      Nesting the namespace "Internal" inside of other namespaces and using
      sequential "using namespace" directives *or* relying on a "using
      namespace" directive to resolve a method name that contained the
      "Internal" namespace for resolution resulted in ambiguous resolution
      errors when compiling with the RHEL5.10 stock compiler (GCC 4.1.2).  A
      sample error is provided below:
      
      Compilation error encountered was:
      reference to 'Internal' is ambiguous
      /usr/lib/gcc/x86_64-redhat-
      candidates are: namespace Internal { }
      qt-creator/src/libs/cplusplus/PPToken.h:106: error:
      namespace CPlusPlus::Internal { }
      
      Modifying the using namespace directives to reflect the nested nature of
      the namespace names resolved the compilation errors.  For example:
      
      using namespace CppEditor;
      using namespace Internal;
      
      produced errors.  However,
      
      using namespace CppEditor;
      using namespace CppEditor::Internal;
      
      resolved the compilation errors by removing the ambiguity.
      
      Change-Id: I6d5051e20acb2c147bd7ee1c6c6e1e3b2b4ff0f9
      Reviewed-by: default avatarErik Verbruggen <erik.verbruggen@digia.com>
      ff52061e
  5. Jun 16, 2014
  6. Jan 08, 2014
  7. Aug 30, 2013
  8. Aug 21, 2013
    • Przemyslaw Gorszkowski's avatar
      CppEditor: fix showing 'Type Hierarchy' · a32343b9
      Przemyslaw Gorszkowski authored
      
      When we open project and do not open any file, then open 'Type Hierarchy'
      (from combobox) we see "No type hierarchy available"(and this is ok). Then
      if we open any file and we try to see 'Type Hierarchy'(Ctrl+Shift+T) then we
      still see "No type hierarchy available"(and this is not ok).
      It will also happens if we save a session with opened "Type Hierarchy".
      
      This change fixes this. Additionally when we select something for which there
      is no 'Type Hierarchy' then it displays "No type hierarchy available".
      
      Task-number: QTCREATORBUG-9819
      Change-Id: Ib6a152f481057098f3d8a4335bb2d4a31fc5e1ef
      Reviewed-by: default avatarTobias Hunger <tobias.hunger@digia.com>
      Reviewed-by: default avatarNikolai Kosjar <nikolai.kosjar@digia.com>
      a32343b9
  9. Jun 03, 2013
  10. Apr 19, 2013
  11. Apr 10, 2013
  12. Apr 03, 2013
  13. Feb 11, 2013
  14. Jan 29, 2013
  15. Oct 16, 2012
  16. Oct 11, 2012
  17. Oct 05, 2012
  18. Oct 01, 2012
  19. Aug 28, 2012
  20. Jul 19, 2012
  21. May 11, 2012
  22. Apr 20, 2012
  23. Feb 15, 2012
  24. Jan 26, 2012
  25. Jan 17, 2012
  26. Jan 16, 2012
  27. Dec 20, 2011
  28. Dec 19, 2011
  29. Nov 10, 2011
  30. Nov 03, 2011
  31. 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
  32. May 06, 2011
  33. Apr 13, 2011
  34. 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
  35. Jan 17, 2011
  36. Jan 12, 2011
  37. Dec 17, 2010
  38. Oct 06, 2010
Loading