summaryrefslogtreecommitdiffstats
path: root/examples/fonts/simple-qfont-demo/simple-qfont-demo.cpp
blob: a217ee8a1d188d0c841ece6ca6139093dbdce935 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

#include "viewer.h"

#include <qapplication.h>
 
int main( int argc, char **argv )
{
    QApplication app( argc, argv );
    Viewer * textViewer = new Viewer();
    textViewer->setCaption( "Qt Example - Simple QFont Demo" );
    app.setMainWidget( textViewer );
    textViewer->show();
    return app.exec();
}