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

#include <QtGui/QApplication>

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