Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
VLMC
Commits
df95b82f
Commit
df95b82f
authored
Aug 11, 2009
by
Hugo Beauzee-Luyssen
Browse files
Adapting VLMC's code to libvlc's recent changes
parent
5a740e36
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/LibVLCpp/VLCException.cpp
View file @
df95b82f
...
...
@@ -48,7 +48,7 @@ void Exception::setErrorCallback( Exception::errorCallback handler, void*
const
char
*
Exception
::
getErrorText
()
const
{
return
libvlc_e
xception_get_message
(
m_internalPtr
);
return
libvlc_e
rrmsg
(
);
}
void
Exception
::
clear
()
...
...
src/gui/Transcode.cpp
View file @
df95b82f
...
...
@@ -33,7 +33,7 @@ static bool catchVLCException( libvlc_exception_t *ex )
{
if
(
libvlc_exception_raised
(
ex
)
)
{
qDebug
()
<<
libvlc_e
xception_get_message
(
ex
);
qDebug
()
<<
libvlc_e
rrmsg
(
);
libvlc_exception_clear
(
ex
);
return
(
true
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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