Skip to content
Snippets Groups Projects
  1. Nov 09, 2013
  2. Oct 17, 2013
    • Orgad Shaneh's avatar
      Git: Fix crash on show stash · a64adc4c
      Orgad Shaneh authored
      
      * show() is called with a QString reference to the model
      * And editor is opened, which triggers stateChanged()
      * stateChanged() updates StashDialog, which refreshes the model with an
        empty directory (another bug)
      * The QString name reference is invalidated => crash on access
      
      Task-number: QTCREATORBUG-10397
      Change-Id: I0c4077f8c4fc90905568f80d1cd89f61c4cd2cba
      Reviewed-by: default avatarEike Ziller <eike.ziller@digia.com>
      a64adc4c
  3. Jun 12, 2013
  4. Jun 11, 2013
  5. May 27, 2013
  6. Apr 05, 2013
  7. Jan 29, 2013
  8. Jan 23, 2013
  9. Jan 08, 2013
    • Orgad Shaneh's avatar
      Remove braces for single lines of conditions · 29a93998
      Orgad Shaneh authored
      
      #!/usr/bin/env ruby
      
      Dir.glob('**/*.cpp') { |file|
        # skip ast (excluding paste, astpath, and canv'ast'imer)
        next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i
        s = File.read(file)
        next if s.include?('qlalr')
        orig = s.dup
        s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m|
          res = $&
          if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces
            res
          else
            res.gsub!('} else', 'else')
            res.gsub!(/\n +} *\n/m, "\n")
            res.gsub(/ *{$/, '')
          end
        }
        s.gsub!(/ *$/, '')
        File.open(file, 'wb').write(s) if s != orig
      }
      
      Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc
      Reviewed-by: default avatarhjk <qthjk@ovi.com>
      29a93998
  10. Dec 30, 2012
  11. Nov 28, 2012
  12. Oct 05, 2012
  13. Jul 19, 2012
  14. Apr 17, 2012
  15. Feb 15, 2012
  16. Jan 26, 2012
  17. Nov 03, 2011
  18. May 06, 2011
  19. Apr 13, 2011
  20. Jan 12, 2011
  21. Dec 17, 2010
  22. Oct 08, 2010
  23. Sep 21, 2010
  24. Mar 05, 2010
  25. Feb 26, 2010
  26. Feb 19, 2010
  27. Jan 27, 2010
  28. Jan 15, 2010
    • Friedemann Kleint's avatar
      VCS[git]: Add support for stashes. · 9ac98a40
      Friedemann Kleint authored
      Add non-modal stash management dialog and additional menu option
      "Stash snapshot..." to stash away changes prompting for a description,
      which will immediately replay the stash (take snapshot and continue
      working).
      Add interface to IVersionControl for creating/restoring/deleting
      snapshots for backup/complex undo operations (currently supported
      by git only). Add test options to VCSBasePlugin.
      Clean up and extend git client accordingly.
      9ac98a40
Loading