summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_dialog.h
diff options
context:
space:
mode:
authorSakari Bergen <sakari.bergen@beatwaves.net>2010-04-02 20:49:02 +0000
committerSakari Bergen <sakari.bergen@beatwaves.net>2010-04-02 20:49:02 +0000
commit48dd5afaa57b5485297b9583a4124e9f444acd84 (patch)
treec5598856f1a91c44bc0613e1997e7b60a05356b2 /gtk2_ardour/export_dialog.h
parentad7025ae84ecd3dceb194b3445e701d1771537ff (diff)
Make audiographer SndfileWriter use PBD::Signal and use it properly. Also make export graph stuff use boost::ptr_list (because of ScopedConnection non-copyability)
git-svn-id: svn://localhost/ardour2/branches/3.0@6844 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/export_dialog.h')
-rw-r--r--gtk2_ardour/export_dialog.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk2_ardour/export_dialog.h b/gtk2_ardour/export_dialog.h
index 75511b5ad3..33a983062f 100644
--- a/gtk2_ardour/export_dialog.h
+++ b/gtk2_ardour/export_dialog.h
@@ -21,7 +21,7 @@
#ifndef __export_dialog_h__
#define __export_dialog_h__
-#include <boost/shared_ptr.hpp>
+#include <boost/scoped_ptr.hpp>
#include "ardour/export_profile_manager.h"
@@ -75,10 +75,10 @@ class ExportDialog : public ArdourDialog {
// Must initialize all the shared_ptrs below
virtual void init_components ();
- boost::shared_ptr<ExportPresetSelector> preset_selector;
- boost::shared_ptr<ExportTimespanSelector> timespan_selector;
- boost::shared_ptr<ExportChannelSelector> channel_selector;
- boost::shared_ptr<ExportFileNotebook> file_notebook;
+ boost::scoped_ptr<ExportPresetSelector> preset_selector;
+ boost::scoped_ptr<ExportTimespanSelector> timespan_selector;
+ boost::scoped_ptr<ExportChannelSelector> channel_selector;
+ boost::scoped_ptr<ExportFileNotebook> file_notebook;
Gtk::VBox warning_widget;
Gtk::VBox progress_widget;