mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-27 09:21:41 +02:00
44 lines
1.5 KiB
Diff
44 lines
1.5 KiB
Diff
Author: Philip Rinn <rinni@inventati.org>
|
|
Description: Fx build with gstreamermm-1.0 1.8.0
|
|
Last-update: 2016-10-15
|
|
--- a/plugins/actions/keyframesmanagement/mediadecoder.h
|
|
+++ b/plugins/actions/keyframesmanagement/mediadecoder.h
|
|
@@ -200,7 +200,7 @@
|
|
{
|
|
check_missing_plugins();
|
|
|
|
- Glib::ustring error = (msg) ? msg->parse().what() : Glib::ustring();
|
|
+ Glib::ustring error = (msg) ? Glib::ustring(msg->parse_debug()) : Glib::ustring();
|
|
|
|
dialog_error(_("Media file could not be played.\n"), error);
|
|
// Critical error, cancel the work.
|
|
@@ -214,7 +214,7 @@
|
|
{
|
|
check_missing_plugins();
|
|
|
|
- Glib::ustring error = (msg) ? msg->parse().what() : Glib::ustring();
|
|
+ Glib::ustring error = (msg) ? Glib::ustring(msg->parse_debug()) : Glib::ustring();
|
|
dialog_error(_("Media file could not be played.\n"), error);
|
|
|
|
return true;
|
|
--- a/plugins/actions/waveformmanagement/mediadecoder.h
|
|
+++ b/plugins/actions/waveformmanagement/mediadecoder.h
|
|
@@ -200,7 +200,7 @@
|
|
{
|
|
check_missing_plugins();
|
|
|
|
- Glib::ustring error = (msg) ? msg->parse().what() : Glib::ustring();
|
|
+ Glib::ustring error = (msg) ? Glib::ustring(msg->parse_debug()) : Glib::ustring();
|
|
|
|
dialog_error(_("Media file could not be played.\n"), error);
|
|
// Critical error, cancel the work.
|
|
@@ -214,7 +214,7 @@
|
|
{
|
|
check_missing_plugins();
|
|
|
|
- Glib::ustring error = (msg) ? msg->parse().what() : Glib::ustring();
|
|
+ Glib::ustring error = (msg) ? Glib::ustring(msg->parse_debug()) : Glib::ustring();
|
|
dialog_error(_("Media file could not be played.\n"), error);
|
|
|
|
return true;
|