Skip to content
Snippets Groups Projects
  1. Sep 30, 2013
  2. Sep 03, 2013
  3. Aug 30, 2013
  4. Aug 14, 2013
  5. Aug 05, 2013
    • Przemyslaw Gorszkowski's avatar
      C++: fix auto completion for template parameters · bfbf93e6
      Przemyslaw Gorszkowski authored
      
      Fix auto completion for the case when template parameter should be
      found somewhere of scope of template instantiation declaration.
      Example:
      struct A
      {
          void foo();
          struct B
          {
              int b;
          };
      };
      
      template<typename T>
      struct Template
      {
          T* get() { return 0; }
          T t;
      };
      
      void A::foo()
      {
          Template<B> templ;
          templ.get()->//no autocompletion
          templ.t.//no autocompletion
      }
      
      Task-number: QTCREATORBUG-8852
      Task-number: QTCREATORBUG-9169
      Change-Id: I56b40776e66740f995ae6fc5d69e3c50139a3af2
      Reviewed-by: default avatarNikolai Kosjar <nikolai.kosjar@digia.com>
      bfbf93e6
  6. Jul 31, 2013
  7. Jul 25, 2013
  8. Jul 12, 2013
  9. Jul 09, 2013
  10. Jun 25, 2013
  11. Jun 18, 2013
    • Przemyslaw Gorszkowski's avatar
      C++: add support for local types · 68d6a762
      Przemyslaw Gorszkowski authored
      
      This change addes support for class, enum definition inside blocks({}) or
      functions, e.g.:
      void f()
      {
      	struct S
      	{
      		int bar;
      	};
      	S s;
      	s.bar;
      }
      
      It fixes:
      * code completion
      * highlighting
      * follow symbol
      * marking
      * find usages
      
      It fixes also problem with namespace aliases inside blocks or functions.
      
      This change can have also impact on performance(there are additional processing)
      
      Task-number: QTCREATORBUG-166 (namespace aliases inside function/block)
      Task-number: QTCREATORBUG-3620
      Task-number: QTCREATORBUG-6013
      Task-number: QTCREATORBUG-8020
      Change-Id: Iaea6c6dfe276f1d7b2279b50bdd2e68e375d31eb
      Reviewed-by: default avatarErik Verbruggen <erik.verbruggen@digia.com>
      68d6a762
  12. Jun 11, 2013
  13. May 24, 2013
  14. May 10, 2013
  15. May 02, 2013
  16. Apr 23, 2013
  17. Apr 22, 2013
  18. Apr 19, 2013
  19. Apr 17, 2013
  20. Apr 10, 2013
  21. Apr 03, 2013
  22. Mar 19, 2013
  23. Feb 21, 2013
  24. Feb 20, 2013
  25. Feb 11, 2013
  26. Feb 01, 2013
  27. Jan 30, 2013
Loading