Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
65097ea8
Commit
65097ea8
authored
Aug 01, 2005
by
Olivier Teulière
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* wxwindows/bookmarks.cpp: cosmetics + removed a debug message
parent
f6fe46e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
10 deletions
+9
-10
modules/gui/wxwindows/bookmarks.cpp
modules/gui/wxwindows/bookmarks.cpp
+9
-10
No files found.
modules/gui/wxwindows/bookmarks.cpp
View file @
65097ea8
...
...
@@ -468,8 +468,8 @@ void BookmarksDialog::OnEdit( wxCommandEvent& event )
{
input_thread_t
*
p_old_input
;
input_thread_t
*
p_input
=
(
input_thread_t
*
)
vlc_object_find
(
p_intf
,
VLC_OBJECT_INPUT
,
FIND_ANYWHERE
);
(
input_thread_t
*
)
vlc_object_find
(
p_intf
,
VLC_OBJECT_INPUT
,
FIND_ANYWHERE
);
if
(
!
p_input
)
return
;
...
...
@@ -492,7 +492,7 @@ void BookmarksDialog::OnEdit( wxCommandEvent& event )
{
BookmarkEditDialog
*
p_bmk_edit
;
p_bmk_edit
=
new
BookmarkEditDialog
(
p_intf
,
this
,
pp_bookmarks
[
i_first
]);
pp_bookmarks
[
i_first
]);
if
(
p_bmk_edit
->
ShowModal
()
==
wxID_OK
)
{
...
...
@@ -502,8 +502,8 @@ void BookmarksDialog::OnEdit( wxCommandEvent& event )
{
wxMessageBox
(
wxU
(
_
(
"No input found. The stream must be "
"playing or paused for bookmarks to work."
)
),
wxU
(
_
(
"No input"
)
),
wxICON_WARNING
|
wxOK
,
this
);
wxU
(
_
(
"No input"
)
),
wxICON_WARNING
|
wxOK
,
this
);
return
;
}
if
(
p_old_input
!=
p_input
)
...
...
@@ -511,15 +511,14 @@ void BookmarksDialog::OnEdit( wxCommandEvent& event )
wxMessageBox
(
wxU
(
_
(
"Input has changed, unable to save "
"bookmark. Use
\"
pause
\"
while editing "
"bookmarks to keep the same input."
)
),
wxU
(
_
(
"Input has changed "
)
),
wxICON_WARNING
|
wxOK
,
this
);
wxU
(
_
(
"Input has changed "
)
),
wxICON_WARNING
|
wxOK
,
this
);
vlc_object_release
(
p_input
);
return
;
}
fprintf
(
stderr
,
"Changing %li
\n
"
,
i_first
);
if
(
input_Control
(
p_input
,
INPUT_CHANGE_BOOKMARK
,
p_bmk_edit
->
p_seekpoint
,
i_first
)
!=
if
(
input_Control
(
p_input
,
INPUT_CHANGE_BOOKMARK
,
p_bmk_edit
->
p_seekpoint
,
i_first
)
!=
VLC_SUCCESS
)
{
vlc_object_release
(
p_input
);
...
...
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