summaryrefslogtreecommitdiff
path: root/examples/widgets/elidedlabel/main.cpp
blob: 851ee4a337170b41b79b34719e340d6788d1797e (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]