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

#include "viewer.h"

#include <ntqapplication.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();
}