[SCM] gsequencer/master: fixed missing wishlist patch to ags_gui_file_xml.c

jkraehemann-guest at users.alioth.debian.org jkraehemann-guest at users.alioth.debian.org
Thu Feb 2 12:51:58 UTC 2017


The following commit has been merged in the master branch:
commit 8e23e3b53933d731595d3b387d4e3e52c34aa1fe
Author: Joël Krähemann <jkraehemann-guest at users.alioth.debian.org>
Date:   Thu Feb 2 13:42:06 2017 +0100

    fixed missing wishlist patch to ags_gui_file_xml.c

diff --git a/debian/patches/series b/debian/patches/series
index 5d9aab4..e8a78db 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,3 +1,4 @@
+wish-gui-file.patch
 wish-port-h.patch
 wish-recall-lv2.patch
 wish-recall-h.patch
diff --git a/debian/patches/wish-gui-file.patch b/debian/patches/wish-gui-file.patch
new file mode 100644
index 0000000..2501b03
--- /dev/null
+++ b/debian/patches/wish-gui-file.patch
@@ -0,0 +1,26 @@
+Description: This is a wishlist patch. It modifies the recall callback handler
+ to use the generic callback ags_line_output_port_run_post_callback().
+ This is used by AgsSynthInputLine, AgsDrumInputLine and AgsMixerInputLine.
+Author: Joël Krähmann <jkraehemann at gmail.com>
+Applied-Upstream: 0.7.122.x, http://git.savannah.gnu.org/cgit/gsequencer.git
+Last-Update: 2017-02-02
+--- a/ags/X/file/ags_gui_file_xml.c
++++ b/ags/X/file/ags_gui_file_xml.c
+@@ -2100,7 +2100,7 @@
+       recall_handler = (AgsRecallHandler *) malloc(sizeof(AgsRecallHandler));
+ 
+       recall_handler->signal_name = "run-post\0";
+-      recall_handler->callback = G_CALLBACK(ags_line_peak_run_post_callback);
++      recall_handler->callback = G_CALLBACK(ags_line_output_port_run_post_callback);
+       recall_handler->data = (gpointer) line;
+ 
+       ags_recall_add_handler(AGS_RECALL(play_peak_channel_run), recall_handler);
+@@ -2116,7 +2116,7 @@
+       recall_handler = (AgsRecallHandler *) malloc(sizeof(AgsRecallHandler));
+ 
+       recall_handler->signal_name = "run-post\0";
+-      recall_handler->callback = G_CALLBACK(ags_line_peak_run_post_callback);
++      recall_handler->callback = G_CALLBACK(ags_line_output_port_run_post_callback);
+       recall_handler->data = (gpointer) line;
+ 
+       ags_recall_add_handler(AGS_RECALL(recall_peak_channel_run), recall_handler);

-- 
gsequencer packaging



More information about the pkg-multimedia-commits mailing list