]> git.sesse.net Git - vlc/commitdiff
* beos/* : do not forgot to destroy the Messages window, so vlc does
authorEric Petit <titer@videolan.org>
Tue, 28 Jan 2003 08:17:26 +0000 (08:17 +0000)
committerEric Petit <titer@videolan.org>
Tue, 28 Jan 2003 08:17:26 +0000 (08:17 +0000)
            lock when exiting
 * missing cvsignores

modules/encoder/.cvsignore [new file with mode: 0644]
modules/encoder/ffmpeg/.cvsignore [new file with mode: 0644]
modules/gui/beos/InterfaceWindow.cpp
modules/gui/beos/MessagesWindow.cpp

diff --git a/modules/encoder/.cvsignore b/modules/encoder/.cvsignore
new file mode 100644 (file)
index 0000000..84c4d6f
--- /dev/null
@@ -0,0 +1,6 @@
+.deps
+.dirstamp
+*.dll
+*.dylib
+*.sl
+*.so
diff --git a/modules/encoder/ffmpeg/.cvsignore b/modules/encoder/ffmpeg/.cvsignore
new file mode 100644 (file)
index 0000000..84c4d6f
--- /dev/null
@@ -0,0 +1,6 @@
+.deps
+.dirstamp
+*.dll
+*.dylib
+*.sl
+*.so
index 45686996e391d77e1262168b4e4c502073b9d2a1..ab992f68129e34e473089b3aae54920f3172dcd6 100644 (file)
@@ -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();
 }
 
 /*****************************************************************************
index 3736bc5ff869b0f79abf9eff951aa1d9f9e854c6..3a52237212663d0553bf75cc50b74de92b5f00b1 100644 (file)
@@ -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();
 }