From efee38c63251d0047a93a429eee86d04a961b56b Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Mon, 4 Jun 2007 20:40:40 +0000 Subject: [PATCH] fix leak (CID 3621) svn path=/trunk/KDE/kdegraphics/okular/; revision=671470 --- conf/dlgidentity.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/dlgidentity.cpp b/conf/dlgidentity.cpp index 6e654d490..8585716c1 100644 --- a/conf/dlgidentity.cpp +++ b/conf/dlgidentity.cpp @@ -14,6 +14,6 @@ DlgIdentity::DlgIdentity( QWidget * parent ) : QWidget( parent ) { - Ui_DlgIdentityBase *dlg = new Ui_DlgIdentityBase(); - dlg->setupUi( this ); + Ui_DlgIdentityBase dlg; + dlg.setupUi( this ); }