Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
677963f1
Commit
677963f1
authored
Jan 28, 2003
by
Eric Petit
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* sanity Lock()s
parent
c5c3a0f0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
7 deletions
+10
-7
modules/gui/beos/MessagesWindow.cpp
modules/gui/beos/MessagesWindow.cpp
+8
-6
modules/gui/beos/PreferencesWindow.cpp
modules/gui/beos/PreferencesWindow.cpp
+2
-1
No files found.
modules/gui/beos/MessagesWindow.cpp
View file @
677963f1
...
...
@@ -2,7 +2,7 @@
* MessagesWindow.cpp: beos interface
*****************************************************************************
* Copyright (C) 1999, 2000, 2001 VideoLAN
* $Id: MessagesWindow.cpp,v 1.
3 2003/01/28 08:17:26
titer Exp $
* $Id: MessagesWindow.cpp,v 1.
4 2003/01/28 10:05:15
titer Exp $
*
* Authors: Eric Petit <titer@videolan.org>
*
...
...
@@ -164,11 +164,13 @@ void MessagesWindow::UpdateMessages()
fMessagesView
->
UnlockLooper
();
/* Scroll at the end */
fScrollBar
->
LockLooper
();
float
min
,
max
;
fScrollBar
->
GetRange
(
&
min
,
&
max
);
fScrollBar
->
SetValue
(
max
);
fScrollBar
->
UnlockLooper
();
if
(
fScrollBar
->
LockLooper
()
)
{
float
min
,
max
;
fScrollBar
->
GetRange
(
&
min
,
&
max
);
fScrollBar
->
SetValue
(
max
);
fScrollBar
->
UnlockLooper
();
}
}
vlc_mutex_lock
(
p_sub
->
p_lock
);
...
...
modules/gui/beos/PreferencesWindow.cpp
View file @
677963f1
...
...
@@ -2,7 +2,7 @@
* PreferencesWindow.cpp: beos interface
*****************************************************************************
* Copyright (C) 1999, 2000, 2001 VideoLAN
* $Id: PreferencesWindow.cpp,v 1.1
0 2003/01/27 10:29:21
titer Exp $
* $Id: PreferencesWindow.cpp,v 1.1
1 2003/01/28 10:05:15
titer Exp $
*
* Authors: Eric Petit <titer@videolan.org>
*
...
...
@@ -206,6 +206,7 @@ void PreferencesWindow::MessageReceived( BMessage * p_message )
*****************************************************************************/
void
PreferencesWindow
::
ReallyQuit
()
{
Lock
();
Hide
();
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