diff -r 2f34d5167611 -r fcece45ef507 demos/embedded/anomaly/src/AddressBar.cpp --- a/demos/embedded/anomaly/src/AddressBar.cpp Fri Apr 16 15:50:13 2010 +0300 +++ b/demos/embedded/anomaly/src/AddressBar.cpp Mon May 03 13:17:34 2010 +0300 @@ -64,9 +64,9 @@ AddressBar::AddressBar(QWidget *parent) : QWidget(parent) { - m_lineEdit = new LineEdit(this); + m_lineEdit = new LineEdit(parent); connect(m_lineEdit, SIGNAL(returnPressed()), SLOT(processAddress())); - m_toolButton = new QToolButton(this); + m_toolButton = new QToolButton(parent); m_toolButton->setText("Go"); connect(m_toolButton, SIGNAL(clicked()), SLOT(processAddress())); }