aboutsummaryrefslogtreecommitdiff
path: root/autotests/kconfig_compiler/test11main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'autotests/kconfig_compiler/test11main.cpp')
-rw-r--r--autotests/kconfig_compiler/test11main.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/autotests/kconfig_compiler/test11main.cpp b/autotests/kconfig_compiler/test11main.cpp
index 4f5fc80c..339ecc71 100644
--- a/autotests/kconfig_compiler/test11main.cpp
+++ b/autotests/kconfig_compiler/test11main.cpp
@@ -22,13 +22,13 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include "test11a.h"
#include <QGuiApplication>
-int main( int argc, char **argv )
+int main(int argc, char **argv)
{
- QGuiApplication app(argc, argv);
- Q_UNUSED(app);
- Test11 *t = new Test11();
- Test11a *t2 = new Test11a();
- delete t;
- delete t2;
- return 0;
+ QGuiApplication app(argc, argv);
+ Q_UNUSED(app);
+ Test11 *t = new Test11();
+ Test11a *t2 = new Test11a();
+ delete t;
+ delete t2;
+ return 0;
}