mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
switch to using boost::signals2 instead of sigc++, at least for libardour. not finished yet, but compiles, loads sessions, records and can close a session without a crash
git-svn-id: svn://localhost/ardour2/branches/3.0@6372 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
da762129f1
commit
f6fdd8dcbf
352 changed files with 3494 additions and 3547 deletions
|
|
@ -29,16 +29,14 @@
|
|||
using namespace ARDOUR;
|
||||
|
||||
ExportFilenameSelector::ExportFilenameSelector () :
|
||||
session (0),
|
||||
|
||||
include_label (_("Include in Filename(s):"), Gtk::ALIGN_LEFT),
|
||||
|
||||
label_label (_("Label:"), Gtk::ALIGN_LEFT),
|
||||
session_checkbox (_("Session Name")),
|
||||
revision_checkbox (_("Revision:")),
|
||||
|
||||
path_label (_("Folder:"), Gtk::ALIGN_LEFT),
|
||||
browse_button (_("Browse"))
|
||||
include_label (_("Include in Filename(s):"), Gtk::ALIGN_LEFT),
|
||||
|
||||
label_label (_("Label:"), Gtk::ALIGN_LEFT),
|
||||
session_checkbox (_("Session Name")),
|
||||
revision_checkbox (_("Revision:")),
|
||||
|
||||
path_label (_("Folder:"), Gtk::ALIGN_LEFT),
|
||||
browse_button (_("Browse"))
|
||||
{
|
||||
pack_start (include_label, false, false, 6);
|
||||
pack_start (include_hbox, false, false, 0);
|
||||
|
|
@ -136,7 +134,7 @@ ExportFilenameSelector::load_state ()
|
|||
void
|
||||
ExportFilenameSelector::set_state (ARDOUR::ExportProfileManager::FilenameStatePtr state_, ARDOUR::Session * session_)
|
||||
{
|
||||
session = session_;
|
||||
SessionHandlePtr::set_session (session_);
|
||||
|
||||
filename = state_->filename;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue