C++ (Qt)MyWidget::MyWidget( QWidget * parent ) { mLab = new QLabel("Lab", this); ..}
C++ (Qt)MyWidget::MyWidget( QWidget * parent ) : mLab(0) { ..} void MyWidget::InitUI( void ){ mLab = new QLabel("Lab", this); ..}