SVN commit 1214844 by pino: place the error icon correctly, ie next to the regexp line edit M +2 -2 kregexpeditorprivate.cpp --- trunk/playground/utils/kregexpeditor/kregexpeditorprivate.cpp #1214843:1214844 @@ -177,9 +177,9 @@ "editor, and by typing the regular expression in this line edit.

") ); QPixmap pix = KIconLoader::global()->loadIcon(KStandardDirs::locate("data", QString::fromLatin1("kregexpeditor/pics/error.png") ), KIconLoader::Toolbar ); - _error = new QLabel( this ); + _error = new QLabel( editDockWidget ); _error->setPixmap( pix ); - layout->addWidget( _error ); + dockLayout->addWidget( _error ); _error->hide(); _timer = new QTimer(this);