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.
15 lines
284 B
15 lines
284 B
14 years ago
|
#include <tqapplication.h>
|
||
|
#include "hello.h"
|
||
|
|
||
|
int main( int argc, char **argv )
|
||
|
{
|
||
|
TQApplication a( argc, argv );
|
||
|
|
||
|
MyPushButton* hello = new MyPushButton( "Hello world!" );
|
||
|
hello->resize( 100, 30 );
|
||
|
|
||
|
a.setMainWidget( hello );
|
||
|
hello->show();
|
||
|
return a.exec();
|
||
|
}
|