summaryrefslogtreecommitdiffstats
path: root/examples/widgets/widgets/elidedlabel/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/widgets/elidedlabel/main.cpp')
-rw-r--r--examples/widgets/widgets/elidedlabel/main.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/examples/widgets/widgets/elidedlabel/main.cpp b/examples/widgets/widgets/elidedlabel/main.cpp
deleted file mode 100644
index 6a1380264e..0000000000
--- a/examples/widgets/widgets/elidedlabel/main.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-#include "testwidget.h"
-
-#include <QApplication>
-
-//! [0]
-int main( int argc, char *argv[] )
-{
- QApplication application( argc, argv );
- TestWidget w;
- w.showFullScreen();
- return application.exec();
-}
-//! [0]