fixed very stupid bug that would prevent to add new exceptions to the list

svn path=/trunk/KDE/kdebase/workspace/; revision=1034958
This commit is contained in:
Hugo Pereira Da Costa 2009-10-14 01:24:09 +00:00
parent 9044453b35
commit bd80aaceb1

View file

@ -142,7 +142,7 @@ namespace Oxygen
// map dialog
QSharedPointer<OxygenExceptionDialog> dialog( new OxygenExceptionDialog( this ) );
dialog->setException( default_configuration_ );
if( dialog->exec() == QDialog::Accepted ) return;
if( dialog->exec() == QDialog::Rejected ) return;
// retrieve exception and check
OxygenException exception( dialog->exception() );