diff -r 56cd8111b7f7 -r 41300fa6a67c examples/activeqt/simple/main.cpp --- a/examples/activeqt/simple/main.cpp Tue Jan 26 12:42:25 2010 +0200 +++ b/examples/activeqt/simple/main.cpp Tue Feb 02 00:43:10 2010 +0200 @@ -64,8 +64,8 @@ LCD = new QLCDNumber( 3, this ); edit = new QLineEdit( this ); - connect( slider, SIGNAL( valueChanged( int ) ), this, SLOT( setValue(int) ) ); - connect( edit, SIGNAL(textChanged(const QString&)), this, SLOT(setText(const QString&)) ); + connect( slider, SIGNAL(valueChanged(int)), this, SLOT(setValue(int)) ); + connect( edit, SIGNAL(textChanged(QString)), this, SLOT(setText(QString)) ); vbox->addWidget( slider ); vbox->addWidget( LCD );