From: Jean-Baptiste Kempf Date: Fri, 30 May 2008 19:10:01 +0000 (-0700) Subject: Quit correctly(?) from the interface/DP. Should fix #1598. X-Git-Tag: 0.9.0-test0~545 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=b6efef389a66779d7a2e4a7a4bd7b45ef5aab0df;p=vlc Quit correctly(?) from the interface/DP. Should fix #1598. --- diff --git a/modules/gui/qt4/dialogs_provider.cpp b/modules/gui/qt4/dialogs_provider.cpp index c18488e48c..2e4df5887d 100644 --- a/modules/gui/qt4/dialogs_provider.cpp +++ b/modules/gui/qt4/dialogs_provider.cpp @@ -88,7 +88,7 @@ DialogsProvider::~DialogsProvider() void DialogsProvider::quit() { - vlc_object_kill( p_intf ); + vlc_object_kill( p_intf->p_libvlc ); QApplication::closeAllWindows(); QApplication::quit(); }