summaryrefslogtreecommitdiffstats
path: root/examples/widgets/elidedlabel/main.cpp
blob: a7c6f3d0f5db01c214a8c1883f51f22d9b50f70a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "testwidget.h"

#include <QtWidgets/QApplication>

//! [0]
int main( int argc, char *argv[] )
{
    QApplication application( argc, argv );
    TestWidget w;
    w.showFullScreen();
    return application.exec();
}
//! [0]