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

Wrong indentation with initialisation lists as parameters

    XMLWordPrintable

Details

    • Bug
    • Resolution: Done
    • P3: Somewhat important
    • None
    • Qt Creator 3.1.1, Qt Creator 3.2.0-beta1, Qt Creator 3.3.0-beta1, Qt Creator 4.12.0-beta2
    • C/C++/Obj-C++ Support

    Description

      How it is
      QCommandLineOption commandOption(
      {QStringLiteral("e"), QStringLiteral("command")},
                  QStringLiteral("Specify a command to execute inside the terminal"),
                  QStringLiteral("COMMAND"));
      
      How it should be
      QCommandLineOption commandOption(
                  {QStringLiteral("e"), QStringLiteral("command")},
                  QStringLiteral("Specify a command to execute inside the terminal"),
                  QStringLiteral("COMMAND"));
      

      Attachments

        Activity

          People

            kandeler Christian Kandeler
            trollixx Oleg Shparber
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: