Run clang-tidy modernize-use-auto over the code
Reduce redundant type info in the line e.g.,
before: QVBoxLayout *l = new QVBoxLayout(); after : auto *l = new QVBoxLayout();
Reduce redundant type info in the line e.g.,
before: QVBoxLayout *l = new QVBoxLayout(); after : auto *l = new QVBoxLayout();