Skip to content
Snippets Groups Projects
  1. Apr 11, 2014
  2. Apr 07, 2014
  3. Apr 04, 2014
  4. Apr 01, 2014
  5. Mar 27, 2014
  6. Mar 26, 2014
  7. Mar 18, 2014
  8. Mar 14, 2014
  9. Mar 13, 2014
  10. Mar 12, 2014
  11. Mar 11, 2014
  12. Mar 05, 2014
  13. Feb 27, 2014
  14. Feb 25, 2014
  15. Feb 19, 2014
  16. 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
  17. Feb 11, 2014
  18. Feb 10, 2014
  19. Jan 24, 2014
  20. Jan 14, 2014
  21. Jan 10, 2014
  22. Jan 09, 2014
  23. Jan 08, 2014
  24. Jan 06, 2014
  25. Dec 18, 2013
  26. Dec 12, 2013
  27. Dec 10, 2013
    • Eike Ziller's avatar
      Preferences: Add default implementation for filtering · deb43b4c
      Eike Ziller authored
      
      The default "matches" method now takes the widget and looks for all
      child labels, checkboxes, push buttons and group boxes.
      Because of that, the former "createWidget" method
      can be called multiple times without creating a new widget
      (-->widget()), and the "finished" method must ensure that the created
      widget gets deleted, since not all widgets that were created are added
      to the UI anymore.
      
      Change-Id: Ia231c7c78dd8819146668e6447d36d22e7836904
      Reviewed-by: default avatarEike Ziller <eike.ziller@digia.com>
      deb43b4c
Loading