Uploaded image for project: 'Qt Creator'
  1. Qt Creator
  2. QTCREATORBUG-16207

Split initializer feature should remove semicolons

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • Icon: P3: Somewhat important P3: Somewhat important
    • None
    • Qt Creator 3.6.1
    • Quick / QML Support
    • None

          popEnter: Transition {
              XAnimator { from: (control.mirrored ? -1 : 1) * -control.width; to: 0; duration: 400; easing.type: Easing.OutCubic }
          }
      

      becomes this:

          popEnter: Transition {
              XAnimator { 
                  from: (control.mirrored ? -1 : 1) * -control.width; 
                  to: 0; 
                  duration: 400; 
                  easing.type: Easing.OutCubic 
              }
          }
      

      However, the semicolons aren't necessary since there are now newlines there instead.

        For Gerrit Dashboard: QTCREATORBUG-16207
        # Subject Branch Project Status CR V

            mitch_curtis Mitch Curtis
            mitch_curtis Mitch Curtis
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:

                There is 1 open Gerrit change