indicate that silence trim is already active.
[ardour.git] / gtk2_ardour / editor_export_audio.cc
index e40030d671d5a7fe6a0b7b65df792a7dba6b0511..0d1f055c80d8003a665e43264a660c32242e9571 100644 (file)
@@ -25,7 +25,7 @@
 
 #include <gtkmm/messagedialog.h>
 
-#include <glib/gstdio.h>
+#include <pbd/gstdio_compat.h>
 
 #include "gtkmm2ext/choice.h"
 
@@ -86,11 +86,11 @@ Editor::export_selection ()
 void
 Editor::export_range ()
 {
-       Marker* marker;
+       ArdourMarker* marker;
 
-       if ((marker = reinterpret_cast<Marker *> (marker_menu_item->get_data ("marker"))) == 0) {
+       if ((marker = reinterpret_cast<ArdourMarker *> (marker_menu_item->get_data ("marker"))) == 0) {
                fatal << _("programming error: marker canvas item has no marker object pointer!") << endmsg;
-               /*NOTREACHED*/
+               abort(); /*NOTREACHED*/
        }
 
        Location* l;