Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
75206aac
Commit
75206aac
authored
Jun 01, 2005
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backport 11235 to 0.8.2 - closes #87 for real
parent
fb34f081
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
modules/gui/wxwindows/playlist.cpp
modules/gui/wxwindows/playlist.cpp
+4
-3
modules/gui/wxwindows/wxwindows.h
modules/gui/wxwindows/wxwindows.h
+1
-1
No files found.
modules/gui/wxwindows/playlist.cpp
View file @
75206aac
...
@@ -163,7 +163,8 @@ BEGIN_EVENT_TABLE(Playlist, wxFrame)
...
@@ -163,7 +163,8 @@ BEGIN_EVENT_TABLE(Playlist, wxFrame)
EVT_BUTTON
(
Search_Event
,
Playlist
::
OnSearch
)
EVT_BUTTON
(
Search_Event
,
Playlist
::
OnSearch
)
EVT_BUTTON
(
Save_Event
,
Playlist
::
OnSave
)
EVT_BUTTON
(
Save_Event
,
Playlist
::
OnSave
)
EVT_TEXT
(
SearchText_Event
,
Playlist
::
OnSearchTextChange
)
/*EVT_TEXT( SearchText_Event, Playlist::OnSearchTextChange )*/
EVT_TEXT_ENTER
(
SearchText_Event
,
Playlist
::
OnSearch
)
/* Custom events */
/* Custom events */
EVT_COMMAND
(
-
1
,
wxEVT_PLAYLIST
,
Playlist
::
OnPlaylistEvent
)
EVT_COMMAND
(
-
1
,
wxEVT_PLAYLIST
,
Playlist
::
OnPlaylistEvent
)
...
@@ -986,10 +987,10 @@ void Playlist::OnSort( wxCommandEvent& event )
...
@@ -986,10 +987,10 @@ void Playlist::OnSort( wxCommandEvent& event )
/**********************************************************************
/**********************************************************************
* Search functions (user)
* Search functions (user)
**********************************************************************/
**********************************************************************/
void
Playlist
::
OnSearchTextChange
(
wxCommandEvent
&
WXUNUSED
(
event
)
)
/*
void Playlist::OnSearchTextChange( wxCommandEvent& WXUNUSED(event) )
{
{
search_button->SetDefault();
search_button->SetDefault();
}
}
*/
void
Playlist
::
OnSearch
(
wxCommandEvent
&
WXUNUSED
(
event
)
)
void
Playlist
::
OnSearch
(
wxCommandEvent
&
WXUNUSED
(
event
)
)
{
{
...
...
modules/gui/wxwindows/wxwindows.h
View file @
75206aac
...
@@ -885,7 +885,7 @@ private:
...
@@ -885,7 +885,7 @@ private:
/* Search (user) */
/* Search (user) */
void
OnSearch
(
wxCommandEvent
&
event
);
void
OnSearch
(
wxCommandEvent
&
event
);
void
OnSearchTextChange
(
wxCommandEvent
&
event
);
/*void OnSearchTextChange( wxCommandEvent& event );*/
wxTextCtrl
*
search_text
;
wxTextCtrl
*
search_text
;
wxButton
*
search_button
;
wxButton
*
search_button
;
wxTreeItemId
search_current
;
wxTreeItemId
search_current
;
...
...
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