You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tqt3/tools/linguist/tutorial/tt3/main.cpp

27 lines
623 B

/****************************************************************
**
** Translation tutorial 3
**
****************************************************************/
#include "mainwindow.h"
#include <ntqapplication.h>
#include <ntqstring.h>
#include <ntqtextcodec.h>
#include <ntqtranslator.h>
int main( int argc, char **argv )
{
TQApplication app( argc, argv );
TQTranslator translator( 0 );
translator.load( TQString("tt3_") + TQTextCodec::locale(), "." );
app.installTranslator( &translator );
MainWindow *mw = new MainWindow;
app.setMainWidget( mw );
mw->show();
return app.exec();
}