summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_dialog.h
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_dialog.h
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_dialog.h')
-rw-r--r--gtk2_ardour/export_dialog.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/export_dialog.h b/gtk2_ardour/export_dialog.h
index 596467d3e1..a35322b854 100644
--- a/gtk2_ardour/export_dialog.h
+++ b/gtk2_ardour/export_dialog.h
@@ -48,7 +48,7 @@ class ExportDialog : public ArdourDialog
virtual Gtk::FileChooserAction browse_action() const { return Gtk::FILE_CHOOSER_ACTION_SAVE; }
protected:
- ARDOUR::AudioExportSpecification spec;
+ ARDOUR::ExportSpecification spec;
Gtk::Frame file_frame;
struct ExportModelColumns : public Gtk::TreeModel::ColumnRecord
@@ -77,7 +77,7 @@ class ExportDialog : public ArdourDialog
// Gets called from within do_export. Is responsible for exporting the
// audio data. spec has already been filled with user input before calling
// this method. The dialog will be closed after this function exited.
- virtual void export_audio_data() = 0;
+ virtual void export_data() = 0;
virtual bool wants_dir() { return false; }