summaryrefslogtreecommitdiffstats
path: root/qmake/examples/tutorial/hello.cpp
blob: cec428bda1c3231a1005578e56c3338fd7cc1eee (plain)
1
2
3
4
5
6
7
#include "hello.h"

MyPushButton::MyPushButton( const QString& text ) 
    : QPushButton( text, 0, "mypushbutton" )
{
    qDebug( "My PushButton has been constructed" );
}