Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
9563b714
Commit
9563b714
authored
Feb 25, 2009
by
JP Dinger
Committed by
Rémi Denis-Courmont
Feb 25, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix spelling of the word ``instantiating''.
Signed-off-by:
Rémi Denis-Courmont
<
rdenis@simphalempin.com
>
parent
71289a77
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
bindings/python/vlc_instance.c
bindings/python/vlc_instance.c
+1
-1
bindings/python/vlc_media.c
bindings/python/vlc_media.c
+1
-1
bindings/python/vlc_mediacontrol.c
bindings/python/vlc_mediacontrol.c
+1
-1
bindings/python/vlc_mediaplayer.c
bindings/python/vlc_mediaplayer.c
+1
-1
No files found.
bindings/python/vlc_instance.c
View file @
9563b714
...
...
@@ -80,7 +80,7 @@ vlcInstance_new( PyTypeObject *type, PyObject *args, PyObject *kwds )
char
**
ppsz_args
=
NULL
;
int
i_size
=
0
;
fprintf
(
stderr
,
"Instan
cian
ting
\n
"
);
fprintf
(
stderr
,
"Instan
tia
ting
\n
"
);
if
(
PyArg_ParseTuple
(
args
,
"|O"
,
&
py_list
)
)
{
i_size
=
pyoptions_to_args
(
py_list
,
&
ppsz_args
);
...
...
bindings/python/vlc_media.c
View file @
9563b714
...
...
@@ -30,7 +30,7 @@ static PyObject *
vlcMedia_new
(
PyTypeObject
*
type
,
PyObject
*
args
,
PyObject
*
kwds
)
{
fprintf
(
stderr
,
"vlcMedia_new called
\n
"
);
PyErr_SetString
(
PyExc_TypeError
,
"vlc.Media can be instan
c
iated by itself. You should use vlc.Instance().media_new(mrl)."
);
PyErr_SetString
(
PyExc_TypeError
,
"vlc.Media can be instan
t
iated by itself. You should use vlc.Instance().media_new(mrl)."
);
return
NULL
;
}
...
...
bindings/python/vlc_mediacontrol.c
View file @
9563b714
...
...
@@ -40,7 +40,7 @@ MediaControl_new( PyTypeObject *type, PyObject *args, PyObject *kwds )
self
=
PyObject_New
(
MediaControl
,
&
MediaControl_Type
);
fprintf
(
stderr
,
"Instan
c
iating mediacontrol
\n
"
);
fprintf
(
stderr
,
"Instan
t
iating mediacontrol
\n
"
);
if
(
PyArg_ParseTuple
(
args
,
"O"
,
&
py_param
)
)
{
if
(
PyObject_TypeCheck
(
py_param
,
&
vlcInstance_Type
)
==
1
)
...
...
bindings/python/vlc_mediaplayer.c
View file @
9563b714
...
...
@@ -632,7 +632,7 @@ static PyTypeObject vlcMediaPlayer_Type =
0
,
/*tp_setattro*/
0
,
/*tp_as_buffer*/
Py_TPFLAGS_DEFAULT
|
Py_TPFLAGS_BASETYPE
,
/*tp_flags*/
"vlc.MediaPlayer object
\n\n
It cannot be instan
c
iated standalone, it must be obtained from an existing vlc.Instance object"
,
/* tp_doc */
"vlc.MediaPlayer object
\n\n
It cannot be instan
t
iated standalone, it must be obtained from an existing vlc.Instance object"
,
/* tp_doc */
0
,
/* tp_traverse */
0
,
/* tp_clear */
0
,
/* tp_richcompare */
...
...
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