Commit 1defce89 authored by Sam Hocevar's avatar Sam Hocevar

* ./plugins/qt/intf_qt.cpp: fixed Qt interface termination.

parent 4cf68d85
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* intf_qt.cpp: Qt interface * intf_qt.cpp: Qt interface
***************************************************************************** *****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN * Copyright (C) 1999, 2000 VideoLAN
* $Id: intf_qt.cpp,v 1.15 2002/07/01 17:39:55 sam Exp $ * $Id: intf_qt.cpp,v 1.16 2002/07/11 18:41:54 sam Exp $
* *
* Authors: Samuel Hocevar <sam@zoy.org> * Authors: Samuel Hocevar <sam@zoy.org>
* *
...@@ -88,10 +88,10 @@ public: ...@@ -88,10 +88,10 @@ public:
~IntfWindow(); ~IntfWindow();
private slots: private slots:
void Manage( void ); void Manage ( void );
void FileOpen ( void ); void FileOpen ( void );
void FileQuit ( void ) { qApp->quit(); }; void FileQuit ( void );
void PlaybackPlay ( void ); void PlaybackPlay ( void );
void PlaybackPause ( void ); void PlaybackPause ( void );
...@@ -405,6 +405,14 @@ void IntfWindow::FileOpen( void ) ...@@ -405,6 +405,14 @@ void IntfWindow::FileOpen( void )
} }
} }
/*****************************************************************************
* FileQuit: terminate vlc
*****************************************************************************/
void IntfWindow::FileQuit( void )
{
p_intf->p_vlc->b_die = VLC_TRUE;
}
/***************************************************************************** /*****************************************************************************
* About: display the "about" box * About: display the "about" box
***************************************************************************** *****************************************************************************
...@@ -479,7 +487,7 @@ void IntfWindow::Manage( void ) ...@@ -479,7 +487,7 @@ void IntfWindow::Manage( void )
p_intf->b_menu_change = 0; p_intf->b_menu_change = 0;
} }
if( p_intf->p_vlc->b_die ) if( p_intf->b_die )
{ {
qApp->quit(); qApp->quit();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment