Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
1defce89
Commit
1defce89
authored
Jul 11, 2002
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./plugins/qt/intf_qt.cpp: fixed Qt interface termination.
parent
4cf68d85
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
plugins/qt/intf_qt.cpp
plugins/qt/intf_qt.cpp
+12
-4
No files found.
plugins/qt/intf_qt.cpp
View file @
1defce89
...
...
@@ -2,7 +2,7 @@
* intf_qt.cpp: Qt interface
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: intf_qt.cpp,v 1.1
5 2002/07/01 17:39:55
sam Exp $
* $Id: intf_qt.cpp,v 1.1
6 2002/07/11 18:41:54
sam Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -88,10 +88,10 @@ public:
~
IntfWindow
();
private
slots
:
void
Manage
(
void
);
void
Manage
(
void
);
void
FileOpen
(
void
);
void
FileQuit
(
void
)
{
qApp
->
quit
();
}
;
void
FileQuit
(
void
);
void
PlaybackPlay
(
void
);
void
PlaybackPause
(
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
*****************************************************************************
...
...
@@ -479,7 +487,7 @@ void IntfWindow::Manage( void )
p_intf
->
b_menu_change
=
0
;
}
if
(
p_intf
->
p_vlc
->
b_die
)
if
(
p_intf
->
b_die
)
{
qApp
->
quit
();
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment