summaryrefslogtreecommitdiffstats
path: root/examples/fonts/simple-qfont-demo/simple-qfont-demo.cpp
blob: 2e9f8d3a677403e94235b031e96e1423d2e7c34b (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 )
{
    TQApplication app( argc, argv );
    Viewer * textViewer = new Viewer();
    textViewer->setCaption( "TQt Example - Simple TQFont Demo" );
    app.setMainWidget( textViewer );
    textViewer->show();
    return app.exec();
}