Skip to content
Snippets Groups Projects
  1. Mar 11, 2014
  2. Feb 19, 2014
  3. Feb 18, 2014
  4. Feb 12, 2014
    • Orgad Shaneh's avatar
      Clean up single namespace forward-declarations · 7ed15760
      Orgad Shaneh authored
      
      Done using the following ruby script:
      
      Dir.glob('**/*.h').each { |file|
        if File.file?(file)
          s = File.read(file)
          t = s.gsub(/^namespace .+ \{\n\s*class .*;\n\s*\}.*$/) { |m| m.gsub(/\n\s*/, ' ').gsub(/\s*\/\/.*$/, '') }
          if t != s
            puts file
            File.open(file, 'w').write(t)
          end
        end
      }
      
      Change-Id: Iffcb966e90eb8e1a625eccd5dd0b94f000ae368e
      Reviewed-by: default avatarhjk <hjk121@nokiamail.com>
      7ed15760
  5. Feb 11, 2014
  6. Jan 28, 2014
  7. Jan 24, 2014
  8. Jan 21, 2014
  9. Jan 20, 2014
  10. Jan 16, 2014
  11. Jan 15, 2014
  12. Jan 14, 2014
  13. Jan 08, 2014
  14. Dec 12, 2013
  15. Dec 10, 2013
  16. Nov 26, 2013
  17. Nov 20, 2013
  18. Nov 14, 2013
  19. Nov 12, 2013
  20. Nov 08, 2013
  21. Nov 06, 2013
  22. Oct 29, 2013
  23. Oct 22, 2013
  24. Oct 09, 2013
  25. Oct 07, 2013
    • Nikolai Kosjar's avatar
      CppTools: Adapt C++ locator names to reality · 872bfb70
      Nikolai Kosjar authored
      
      The new names are:
      
      * C++ Methods in Current Document -> C++ Symbols in Current Document
      * C++ Classes and Methods -> C++ Classes, Enums and Functions
      * C++ Methods and Functions -> C++ Functions
      
      Further notes:
      
      * "C++ Classes" stays the same.
      * The term "Methods" was removed since "Functions" says it all (member
        functions, non-member functions). Because of this, the "m" shortcut
        for this filter does not fit so well to the name anymore.
      * "C++ Symbols in..." - "Symbols" means the same as in the C++ Search
        dialog: classes, enums, functions and declarations
      
      Change-Id: I8e5f410f2dcb1fafe83d0a1c8607f4c17eabbb8c
      Reviewed-by: default avatarLeena Miettinen <riitta-leena.miettinen@digia.com>
      872bfb70
  26. Sep 26, 2013
  27. Sep 25, 2013
  28. Sep 20, 2013
  29. Sep 09, 2013
Loading