[vlc-commits] Qt: do not delete parented QDialogs
Jean-Baptiste Kempf
git at videolan.org
Mon Sep 10 17:10:54 CEST 2012
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Sep 10 16:58:33 2012 +0200| [a2df1797f9b6b39fcb8eeb3f0d616e9713b065c5] | committer: Jean-Baptiste Kempf
Qt: do not delete parented QDialogs
Ref #7431 #5377
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a2df1797f9b6b39fcb8eeb3f0d616e9713b065c5
---
modules/gui/qt4/components/simple_preferences.cpp | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/modules/gui/qt4/components/simple_preferences.cpp b/modules/gui/qt4/components/simple_preferences.cpp
index c974c41..48b7d00 100644
--- a/modules/gui/qt4/components/simple_preferences.cpp
+++ b/modules/gui/qt4/components/simple_preferences.cpp
@@ -1026,7 +1026,6 @@ void SPrefsPanel::assoDialog()
CONNECT( clearButton, clicked(), d, reject() );
d->resize( 300, 400 );
d->exec();
- delete d;
delete qvReg;
listAsso.clear();
}
@@ -1041,7 +1040,7 @@ void addAsso( QVLCRegistry *qvReg, const char *psz_ext )
if( !EMPTY_STR(psz_value) )
qvReg->WriteRegistryString( psz_ext, "VLC.backup", psz_value );
- delete psz_value;
+ free( psz_value );
/* Put a "link" to VLC.EXT as default */
qvReg->WriteRegistryString( psz_ext, "", qtu( s_path ) );
@@ -1083,7 +1082,7 @@ void delAsso( QVLCRegistry *qvReg, const char *psz_ext )
qvReg->DeleteKey( psz_ext, "VLC.backup" );
}
- delete( psz_value );
+ free( psz_value );
}
void SPrefsPanel::saveAsso()
{
More information about the vlc-commits
mailing list