Skip to content
Snippets Groups Projects
  1. Jan 19, 2016
  2. Mar 05, 2015
  3. Feb 26, 2015
  4. Feb 04, 2015
    • Orgad Shaneh's avatar
      C++: Remove unneeded qualifications · 65e7db42
      Orgad Shaneh authored
      
      Mostly done using the following ruby script:
      Dir.glob('**/*.cpp').each { |file|
        next if file =~ %r{src/shared/qbs|/qmljs/}
        s = File.read(file)
        s.scan(/^using namespace (.*);$/) {
          ns = $1
          t = s.gsub(/^(.*)\b#{ns}::((?!Const)[A-Z])/) { |m|
            before = $1
            char = $2
            if before =~ /"|\/\/|\\|using|SIGNAL|SLOT|Q_/
              m
            else
              before + char
            end
          }
          if t != s
            puts file
            File.open(file, 'w').write(t)
          end
        }
      }
      
      Change-Id: I6fbe13ddc1485efe95c3156097bf41d90c0febac
      Reviewed-by: default avatarNikolai Kosjar <nikolai.kosjar@theqtcompany.com>
      65e7db42
  5. Jan 30, 2015
  6. Jan 16, 2015
  7. Oct 09, 2014
  8. Sep 29, 2014
  9. Aug 04, 2014
  10. May 12, 2014
  11. Jan 24, 2014
  12. Jan 21, 2014
  13. Jan 15, 2014
  14. Jan 08, 2014
  15. 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
  16. Sep 20, 2013
  17. May 29, 2013
  18. Apr 10, 2013
  19. Apr 03, 2013
  20. Mar 12, 2013
  21. Jan 29, 2013
  22. Jan 24, 2013
    • Nikolai Kosjar's avatar
      C++: Add settings dialog for pointer declaration formatting · 8fe25d0a
      Nikolai Kosjar authored
      
      The dialog is at Tools > Options > C++ > Code Style > Edit... > Pointers
      and References.
      
      Currently the settings are referenced when applying the following
      QuickFixes:
       - Adapting function signature in declaration/definition
         (FunctionDeclDefLink)
       - Inserting declaration from definition (InsertDeclOperation)
       - Inserting definition from declaration (InsertDefOperation)
       - Extracting a function (ExtractFunctionOperation)
       - Add Local Declaration (AddLocalDeclarationOp::Operation)
      
      In these cases the code style of the current project is used. If there
      is no current project open, the current global code style is used.
      
      Task-number: QTCREATORBUG-6169
      
      Change-Id: I3e4e502b3103f7f754ac9b39594ad461d89d9304
      Reviewed-by: default avatarErik Verbruggen <erik.verbruggen@digia.com>
      8fe25d0a
  23. Jan 17, 2013
  24. Dec 29, 2012
  25. Nov 22, 2012
  26. Oct 05, 2012
  27. Jul 19, 2012
  28. Jun 19, 2012
  29. May 23, 2012
  30. Feb 15, 2012
  31. Jan 26, 2012
  32. Jan 24, 2012
  33. Nov 03, 2011
  34. Sep 23, 2011
  35. Jul 06, 2011
  36. Jun 22, 2011
  37. Jun 08, 2011
  38. Jun 01, 2011
  39. May 30, 2011
    • Thorbjørn Lindeijer's avatar
      Fixed missing border for tab widget in Projects mode · 61fc11b9
      Thorbjørn Lindeijer authored
      Usually for tab widgets we disabled the border of the first tab, since
      the tabs are generally aligned to the single pixel black splitters that
      we used in Creator (like in the case of dock widgets or application
      output).
      
      Since this particular tab widget is not aligned to such a splitter, it
      should have its own border which can be achieved by disabling the
      custom style on it.
      
      Change-Id: I8c7af60847afb5cd73ecd8c39a834ed63298ec76
      Reviewed-on: http://codereview.qt.nokia.com/122
      Reviewed-by: Jens Bache-Wiig
      61fc11b9
Loading