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

Split initializer feature should remove semicolons

XMLWordPrintable

    • 236eef8b8 (master)

          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.

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

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

              Created:
              Updated:
              Resolved:

                There are no open Gerrit changes