Fix include order to respect the Coding Conventions. Task-number: QTBUG-108858 Pick-to: 6.5 Change-Id: Ifecf7c60ca7135104631587b25e907cb1d39e25b Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> (cherry picked from commit 8643b52467f4034498c7fb08ede4b1f429ed5aa5) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
18 lines
323 B
C++
18 lines
323 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#include "dialog.h"
|
|
|
|
#include <QApplication>
|
|
|
|
//! [0]
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication application(argc, argv);
|
|
Dialog dialog;
|
|
dialog.show();
|
|
return application.exec();
|
|
}
|
|
//! [0]
|
|
|