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
ac4dea24
Commit
ac4dea24
authored
Aug 03, 2005
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forgot to change a few variable names (refs #80)
parent
5938dd60
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
11 deletions
+11
-11
modules/gui/wxwidgets/dialogs.cpp
modules/gui/wxwidgets/dialogs.cpp
+2
-2
modules/gui/wxwidgets/interface.cpp
modules/gui/wxwidgets/interface.cpp
+5
-5
modules/gui/wxwidgets/menus.cpp
modules/gui/wxwidgets/menus.cpp
+2
-2
modules/gui/wxwidgets/video.cpp
modules/gui/wxwidgets/video.cpp
+2
-2
No files found.
modules/gui/wxwidgets/dialogs.cpp
View file @
ac4dea24
/*****************************************************************************
/*****************************************************************************
* dialogs.cpp : wxWi
ndow
s plugin for vlc
* dialogs.cpp : wxWi
dget
s plugin for vlc
*****************************************************************************
*****************************************************************************
* Copyright (C) 2000-2004 the VideoLAN team
* Copyright (C) 2000-2004 the VideoLAN team
* $Id$
* $Id$
...
@@ -165,7 +165,7 @@ DialogsProvider::DialogsProvider( intf_thread_t *_p_intf, wxWindow *p_parent )
...
@@ -165,7 +165,7 @@ DialogsProvider::DialogsProvider( intf_thread_t *_p_intf, wxWindow *p_parent )
/* Check if user wants to show the bookmarks dialog by default */
/* Check if user wants to show the bookmarks dialog by default */
wxCommandEvent
dummy_event
;
wxCommandEvent
dummy_event
;
if
(
config_GetInt
(
p_intf
,
"wx
win
-bookmarks"
)
)
if
(
config_GetInt
(
p_intf
,
"wx-bookmarks"
)
)
OnBookmarks
(
dummy_event
);
OnBookmarks
(
dummy_event
);
/* Intercept all menu events in our custom event handler */
/* Intercept all menu events in our custom event handler */
...
...
modules/gui/wxwidgets/interface.cpp
View file @
ac4dea24
...
@@ -255,7 +255,7 @@ Interface::Interface( intf_thread_t *_p_intf, long style ):
...
@@ -255,7 +255,7 @@ Interface::Interface( intf_thread_t *_p_intf, long style ):
#ifdef wxHAS_TASK_BAR_ICON
#ifdef wxHAS_TASK_BAR_ICON
/* Systray integration */
/* Systray integration */
p_systray
=
NULL
;
p_systray
=
NULL
;
if
(
config_GetInt
(
p_intf
,
"wx
win
-systray"
)
)
if
(
config_GetInt
(
p_intf
,
"wx-systray"
)
)
{
{
p_systray
=
new
Systray
(
this
,
p_intf
);
p_systray
=
new
Systray
(
this
,
p_intf
);
p_systray
->
SetIcon
(
wxIcon
(
vlc16x16_xpm
),
wxT
(
"VLC media player"
)
);
p_systray
->
SetIcon
(
wxIcon
(
vlc16x16_xpm
),
wxT
(
"VLC media player"
)
);
...
@@ -287,7 +287,7 @@ Interface::Interface( intf_thread_t *_p_intf, long style ):
...
@@ -287,7 +287,7 @@ Interface::Interface( intf_thread_t *_p_intf, long style ):
/* Video window */
/* Video window */
video_window
=
0
;
video_window
=
0
;
if
(
config_GetInt
(
p_intf
,
"wx
win
-embed"
)
)
if
(
config_GetInt
(
p_intf
,
"wx-embed"
)
)
{
{
video_window
=
CreateVideoWindow
(
p_intf
,
this
);
video_window
=
CreateVideoWindow
(
p_intf
,
this
);
frame_sizer
->
Add
(
p_intf
->
p_sys
->
p_video_sizer
,
1
,
wxEXPAND
,
0
);
frame_sizer
->
Add
(
p_intf
->
p_sys
->
p_video_sizer
,
1
,
wxEXPAND
,
0
);
...
@@ -393,7 +393,7 @@ void Interface::OnControlEvent( wxCommandEvent& event )
...
@@ -393,7 +393,7 @@ void Interface::OnControlEvent( wxCommandEvent& event )
*****************************************************************************/
*****************************************************************************/
void
Interface
::
CreateOurMenuBar
()
void
Interface
::
CreateOurMenuBar
()
{
{
int
minimal
=
config_GetInt
(
p_intf
,
"wx
win
-minimal"
);
int
minimal
=
config_GetInt
(
p_intf
,
"wx-minimal"
);
/* Create the "File" menu */
/* Create the "File" menu */
wxMenu
*
file_menu
=
new
wxMenu
;
wxMenu
*
file_menu
=
new
wxMenu
;
...
@@ -493,7 +493,7 @@ void Interface::CreateOurToolBar()
...
@@ -493,7 +493,7 @@ void Interface::CreateOurToolBar()
#define HELP_SLOW N_("Play slower")
#define HELP_SLOW N_("Play slower")
#define HELP_FAST N_("Play faster")
#define HELP_FAST N_("Play faster")
int
minimal
=
config_GetInt
(
p_intf
,
"wx
win
-minimal"
);
int
minimal
=
config_GetInt
(
p_intf
,
"wx-minimal"
);
wxLogNull
LogDummy
;
/* Hack to suppress annoying log message on the win32
wxLogNull
LogDummy
;
/* Hack to suppress annoying log message on the win32
* version because we don't include wx.rc */
* version because we don't include wx.rc */
...
@@ -1544,7 +1544,7 @@ void Systray::OnStopStream( wxCommandEvent& event )
...
@@ -1544,7 +1544,7 @@ void Systray::OnStopStream( wxCommandEvent& event )
/* Systray popup menu */
/* Systray popup menu */
wxMenu
*
Systray
::
CreatePopupMenu
()
wxMenu
*
Systray
::
CreatePopupMenu
()
{
{
int
minimal
=
config_GetInt
(
p_intf
,
"wx
win
-minimal"
);
int
minimal
=
config_GetInt
(
p_intf
,
"wx-minimal"
);
wxMenu
*
systray_menu
=
new
wxMenu
;
wxMenu
*
systray_menu
=
new
wxMenu
;
systray_menu
->
Append
(
Exit_Event
,
wxU
(
_
(
"Quit VLC"
))
);
systray_menu
->
Append
(
Exit_Event
,
wxU
(
_
(
"Quit VLC"
))
);
...
...
modules/gui/wxwidgets/menus.cpp
View file @
ac4dea24
/*****************************************************************************
/*****************************************************************************
* menus.cpp : wxWi
ndow
s plugin for vlc
* menus.cpp : wxWi
dget
s plugin for vlc
*****************************************************************************
*****************************************************************************
* Copyright (C) 2000-2004 the VideoLAN team
* Copyright (C) 2000-2004 the VideoLAN team
* $Id$
* $Id$
...
@@ -148,7 +148,7 @@ void PopupMenu( intf_thread_t *p_intf, wxWindow *p_parent,
...
@@ -148,7 +148,7 @@ void PopupMenu( intf_thread_t *p_intf, wxWindow *p_parent,
{
{
#define MAX_POPUP_ITEMS 45
#define MAX_POPUP_ITEMS 45
int
minimal
=
config_GetInt
(
p_intf
,
"wx
win
-minimal"
);
int
minimal
=
config_GetInt
(
p_intf
,
"wx-minimal"
);
vlc_object_t
*
p_object
,
*
p_input
;
vlc_object_t
*
p_object
,
*
p_input
;
char
*
ppsz_varnames
[
MAX_POPUP_ITEMS
];
char
*
ppsz_varnames
[
MAX_POPUP_ITEMS
];
...
...
modules/gui/wxwidgets/video.cpp
View file @
ac4dea24
/*****************************************************************************
/*****************************************************************************
* video.cpp : wxWi
ndow
s plugin for vlc
* video.cpp : wxWi
dget
s plugin for vlc
*****************************************************************************
*****************************************************************************
* Copyright (C) 2000-2004, 2003 the VideoLAN team
* Copyright (C) 2000-2004, 2003 the VideoLAN team
* $Id$
* $Id$
...
@@ -125,7 +125,7 @@ VideoWindow::VideoWindow( intf_thread_t *_p_intf, wxWindow *_p_parent ):
...
@@ -125,7 +125,7 @@ VideoWindow::VideoWindow( intf_thread_t *_p_intf, wxWindow *_p_parent ):
vlc_mutex_init
(
p_intf
,
&
lock
);
vlc_mutex_init
(
p_intf
,
&
lock
);
b_auto_size
=
config_GetInt
(
p_intf
,
"wx
win
-autosize"
);
b_auto_size
=
config_GetInt
(
p_intf
,
"wx-autosize"
);
p_vout
=
NULL
;
p_vout
=
NULL
;
i_creation_date
=
0
;
i_creation_date
=
0
;
...
...
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