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
a39c3623
Commit
a39c3623
authored
Apr 23, 2003
by
Cyril Deguet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fixed some constructors and destructors
parent
340204ae
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
10 deletions
+16
-10
modules/gui/skins/controls/generic.cpp
modules/gui/skins/controls/generic.cpp
+7
-2
modules/gui/skins/src/skin_common.h
modules/gui/skins/src/skin_common.h
+2
-1
modules/gui/skins/src/skin_main.cpp
modules/gui/skins/src/skin_main.cpp
+7
-7
No files found.
modules/gui/skins/controls/generic.cpp
View file @
a39c3623
...
...
@@ -2,7 +2,7 @@
* generic.cpp: Generic control, parent of the others
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: generic.cpp,v 1.
4 2003/04/21 21:51:16
asmax Exp $
* $Id: generic.cpp,v 1.
5 2003/04/23 10:29:52
asmax Exp $
*
* Authors: Olivier Teulire <ipkiss@via.ecp.fr>
* Emmanuel Puig <karibu@via.ecp.fr>
...
...
@@ -51,6 +51,11 @@ GenericControl::GenericControl( string id, bool visible, string help,
Visible
=
visible
;
Help
=
help
;
ParentWindow
=
Parent
;
Left
=
0
;
Top
=
0
;
Width
=
0
;
Height
=
0
;
State
=
0
;
Img
=
NULL
;
p_intf
=
Parent
->
GetIntf
();
}
...
...
@@ -58,7 +63,7 @@ GenericControl::GenericControl( string id, bool visible, string help,
GenericControl
::~
GenericControl
()
{
if
(
Img
!=
NULL
)
delete
Img
;
delete
[]
Img
;
}
//---------------------------------------------------------------------------
bool
GenericControl
::
GenericProcessEvent
(
Event
*
evt
)
...
...
modules/gui/skins/src/skin_common.h
View file @
a39c3623
...
...
@@ -2,7 +2,7 @@
* skin_common.h: Private Skin interface description
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: skin_common.h,v 1.
4 2003/04/21 02:50:49
asmax Exp $
* $Id: skin_common.h,v 1.
5 2003/04/23 10:29:52
asmax Exp $
*
* Authors: Olivier Teulière <ipkiss@via.ecp.fr>
* Emmanuel Puig <karibu@via.ecp.fr>
...
...
@@ -77,6 +77,7 @@ struct intf_sys_t
// Wait wxwindows initialization
vlc_mutex_t
init_lock
;
vlc_cond_t
init_cond
;
};
#endif
...
...
modules/gui/skins/src/skin_main.cpp
View file @
a39c3623
...
...
@@ -2,7 +2,7 @@
* skin-main.cpp: skins plugin for VLC
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: skin_main.cpp,v 1.1
7 2003/04/22 19:26:0
2 asmax Exp $
* $Id: skin_main.cpp,v 1.1
8 2003/04/23 10:29:5
2 asmax Exp $
*
* Authors: Olivier Teulire <ipkiss@via.ecp.fr>
* Emmanuel Puig <karibu@via.ecp.fr>
...
...
@@ -114,9 +114,9 @@ static int Open ( vlc_object_t *p_this )
gdk_init
(
&
i_args
,
&
pp_args
);
#endif
// Initialize conditions
vlc_mutex_init
(
p_intf
,
&
p_intf
->
p_sys
->
init_lock
);
vlc_cond_init
(
p_intf
,
&
p_intf
->
p_sys
->
init_cond
);
// Initialize conditions
and mutexes
vlc_mutex_init
(
p_intf
,
&
p_intf
->
p_sys
->
init_lock
);
vlc_cond_init
(
p_intf
,
&
p_intf
->
p_sys
->
init_cond
);
p_intf
->
p_sys
->
p_theme
=
(
Theme
*
)
new
OSTheme
(
p_intf
);
...
...
@@ -147,9 +147,9 @@ static void Close ( vlc_object_t *p_this )
// Unsuscribe to messages bank
msg_Unsubscribe
(
p_intf
,
p_intf
->
p_sys
->
p_sub
);
// Destroy conditions
vlc_cond_destroy
(
&
p_intf
->
p_sys
->
init_cond
);
vlc_mutex_destroy
(
&
p_intf
->
p_sys
->
init_lock
);
// Destroy conditions
and mutexes
vlc_cond_destroy
(
&
p_intf
->
p_sys
->
init_cond
);
vlc_mutex_destroy
(
&
p_intf
->
p_sys
->
init_lock
);
// Destroy structure
free
(
p_intf
->
p_sys
);
...
...
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