Skip to content
Snippets Groups Projects
  1. Mar 13, 2014
  2. Mar 11, 2014
  3. Feb 24, 2014
    • Tobias Hunger's avatar
      Hg: Improve push/pull handling · f6aba961
      Tobias Hunger authored
      
      * Use paths/default-push and paths/default Urls as appropriate
      * Read the settings from the project location except when the
        currently open file is not below that project directory.
      
        This makes things work for QTCREATORBUG-10261 without breaking
        .hgsubs (which are required to be children of the top-level
        repository.
      
      Task-number: QTCREATORBUG-10261
      Change-Id: Ie7cc4b9a420f17e27b69eae93fb9985e1a218d6e
      Reviewed-by: default avatarTobias Hunger <tobias.hunger@digia.com>
      f6aba961
  4. Feb 19, 2014
  5. Feb 18, 2014
  6. 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
  7. Feb 11, 2014
  8. Feb 07, 2014
  9. Jan 14, 2014
  10. Jan 08, 2014
  11. 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
  12. Oct 15, 2013
  13. Oct 11, 2013
  14. Oct 10, 2013
  15. Oct 09, 2013
  16. Sep 24, 2013
  17. Sep 20, 2013
  18. Sep 03, 2013
  19. Sep 02, 2013
  20. Aug 30, 2013
  21. Aug 26, 2013
  22. Aug 20, 2013
  23. Aug 12, 2013
  24. Aug 06, 2013
  25. Aug 02, 2013
  26. Jul 17, 2013
  27. Jul 10, 2013
  28. Jul 09, 2013
  29. Jun 14, 2013
  30. Jun 13, 2013
  31. Jun 11, 2013
  32. Jun 10, 2013
  33. Jun 07, 2013
  34. Jun 05, 2013
    • Eike Ziller's avatar
      Switch less often to edit mode · 7c8db798
      Eike Ziller authored
      
      This change
      * Removes IMode::type, ModeManager::activateModeType, and
        IEditor::preferredModeType, and adds IEditor::isDesignModePreferred
        instead
      * Adapts the mode switching code in EditorManager to handle multiple
        windows, for example switching to edit mode should only happen if
        the editor/view is in the main window. Otherwise the editor window
        should be raised and focused
      * Renames EditorManager::NoActivate --> DoNotChangeCurrentEditor
      * Reverts the EditorManager::ModeSwitch logic to switch mode or
        make the current editor visible by default, introducing
        DoNotMakeVisible flag instead
      * Fixes a few instances where EditorManager::ModeSwitch should have been
        used
      
      One non-trivial problem left: If you open a .ui file and switch to an
      external editor window, edit mode is activated, because the current
      editor no longer is a .ui file, which means that the design mode gets
      deactivated.
      
      Change-Id: I76c5c2391eb4090143b778fb103acff3a5a1ff41
      Reviewed-by: default avatarDavid Schulz <david.schulz@digia.com>
      7c8db798
  35. May 27, 2013
Loading