Commit c5c3a0f0 authored by Eric Petit's avatar Eric Petit

* beos/* : do not forgot to destroy the Messages window, so vlc does

            lock when exiting
 * missing cvsignores
parent 9617a4b3
.deps
.dirstamp
*.dll
*.dylib
*.sl
*.so
.deps
.dirstamp
*.dll
*.dylib
*.sl
*.so
......@@ -2,7 +2,7 @@
* InterfaceWindow.cpp: beos interface
*****************************************************************************
* Copyright (C) 1999, 2000, 2001 VideoLAN
* $Id: InterfaceWindow.cpp,v 1.23 2003/01/27 10:29:21 titer Exp $
* $Id: InterfaceWindow.cpp,v 1.24 2003/01/28 08:17:26 titer Exp $
*
* Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
......@@ -234,8 +234,10 @@ InterfaceWindow::InterfaceWindow( BRect frame, const char *name,
InterfaceWindow::~InterfaceWindow()
{
if (fPlaylistWindow)
if( fPlaylistWindow )
fPlaylistWindow->ReallyQuit();
if( fMessagesWindow )
fMessagesWindow->ReallyQuit();
}
/*****************************************************************************
......
......@@ -2,7 +2,7 @@
* MessagesWindow.cpp: beos interface
*****************************************************************************
* Copyright (C) 1999, 2000, 2001 VideoLAN
* $Id: MessagesWindow.cpp,v 1.2 2003/01/26 08:28:20 titer Exp $
* $Id: MessagesWindow.cpp,v 1.3 2003/01/28 08:17:26 titer Exp $
*
* Authors: Eric Petit <titer@videolan.org>
*
......@@ -95,6 +95,7 @@ bool MessagesWindow::QuitRequested()
*****************************************************************************/
void MessagesWindow::ReallyQuit()
{
Lock();
Hide();
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