summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_range_markers_dialog.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-02-19 22:10:27 +0000
committerDavid Robillard <d@drobilla.net>2008-02-19 22:10:27 +0000
commita2a6cc0404757f445bd753d69f34d8bc2c0e87a9 (patch)
tree5d42f3dc23fa38679de1946d76ff0aa98845bc39 /gtk2_ardour/export_range_markers_dialog.cc
parent4cbd7f0eabfb9221444776bc6ea2dfe3a53cf873 (diff)
Merge with 2.0-ongoing R3082.
Superficial generification of export stuff. git-svn-id: svn://localhost/ardour2/branches/3.0@3088 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/export_range_markers_dialog.cc')
-rw-r--r--gtk2_ardour/export_range_markers_dialog.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/export_range_markers_dialog.cc b/gtk2_ardour/export_range_markers_dialog.cc
index 1184294a67..8bb93eb4aa 100644
--- a/gtk2_ardour/export_range_markers_dialog.cc
+++ b/gtk2_ardour/export_range_markers_dialog.cc
@@ -54,7 +54,7 @@ ExportRangeMarkersDialog::browse_action () const
}
void
-ExportRangeMarkersDialog::export_audio_data ()
+ExportRangeMarkersDialog::export_data ()
{
getSession().locations()->apply(*this, &ExportRangeMarkersDialog::process_range_markers_export);
}
@@ -83,7 +83,7 @@ ExportRangeMarkersDialog::process_range_markers_export(Locations::LocationList&
getSession().request_locate(spec.start_frame, false);
- if (getSession().start_audio_export(spec)){
+ if (getSession().start_export(spec)){
// if export fails
return;
}