git pull Revert "use QWeakPointer (and explicit deletion, if needed)
instead of QSharedPointer" This reverts commit 73da3a77f2041ac3de44842a162243c036fd32f9. CCBUG: 277925
This commit is contained in:
parent
6d96696898
commit
cfdfe9251c
1 changed files with 13 additions and 16 deletions
|
@ -27,7 +27,7 @@
|
|||
#include "oxygenexceptionlistwidget.moc"
|
||||
#include "oxygenexceptiondialog.h"
|
||||
|
||||
#include <QtCore/QWeakPointer>
|
||||
#include <QtCore/QSharedPointer>
|
||||
#include <KLocale>
|
||||
#include <KMessageBox>
|
||||
|
||||
|
@ -113,14 +113,13 @@ namespace Oxygen
|
|||
{
|
||||
|
||||
// map dialog
|
||||
QWeakPointer<ExceptionDialog> dialog( new ExceptionDialog( this ) );
|
||||
dialog.data()->setException( _defaultConfiguration );
|
||||
if( dialog.data()->exec() == QDialog::Rejected || !dialog ) return;
|
||||
QSharedPointer<ExceptionDialog> dialog( new ExceptionDialog( this ) );
|
||||
dialog->setException( _defaultConfiguration );
|
||||
if( dialog->exec() == QDialog::Rejected ) return;
|
||||
|
||||
// retrieve exception and check
|
||||
Exception exception( dialog.data()->exception() );
|
||||
Exception exception( dialog->exception() );
|
||||
if( !checkException( exception ) ) return;
|
||||
delete dialog.data();
|
||||
|
||||
// create new item
|
||||
model().add( exception );
|
||||
|
@ -150,13 +149,12 @@ namespace Oxygen
|
|||
Exception& exception( model().get( current ) );
|
||||
|
||||
// create dialog
|
||||
QWeakPointer<ExceptionDialog> dialog( new ExceptionDialog( this ) );
|
||||
dialog.data()->setException( exception );
|
||||
QSharedPointer<ExceptionDialog> dialog( new ExceptionDialog( this ) );
|
||||
dialog->setException( exception );
|
||||
|
||||
// map dialog
|
||||
if( dialog.data()->exec() == QDialog::Rejected || !dialog ) return;
|
||||
Exception newException = dialog.data()->exception();
|
||||
delete dialog.data();
|
||||
if( dialog->exec() == QDialog::Rejected ) return;
|
||||
Exception newException = dialog->exception();
|
||||
|
||||
// check if exception was changed
|
||||
if( exception == newException ) return;
|
||||
|
@ -312,11 +310,10 @@ namespace Oxygen
|
|||
{
|
||||
|
||||
KMessageBox::error( this, i18n("Regular Expression syntax is incorrect") );
|
||||
QWeakPointer<ExceptionDialog> dialog( new ExceptionDialog( this ) );
|
||||
dialog.data()->setException( exception );
|
||||
if( dialog.data()->exec() == QDialog::Rejected || !dialog ) return false;
|
||||
exception = dialog.data()->exception();
|
||||
delete dialog.data();
|
||||
QSharedPointer<ExceptionDialog> dialog( new ExceptionDialog( this ) );
|
||||
dialog->setException( exception );
|
||||
if( dialog->exec() == QDialog::Rejected ) return false;
|
||||
exception = dialog->exception();
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue