mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +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
|
|
@ -49,7 +49,7 @@ ExportFileNotebook::ExportFileNotebook () :
|
|||
void
|
||||
ExportFileNotebook::set_session_and_manager (ARDOUR::Session * s, boost::shared_ptr<ARDOUR::ExportProfileManager> manager)
|
||||
{
|
||||
session = s;
|
||||
SessionHandlePtr::set_session (s);
|
||||
profile_manager = manager;
|
||||
|
||||
sync_with_manager ();
|
||||
|
|
@ -110,7 +110,7 @@ ExportFileNotebook::add_new_file_page ()
|
|||
void
|
||||
ExportFileNotebook::add_file_page (ARDOUR::ExportProfileManager::FormatStatePtr format_state, ARDOUR::ExportProfileManager::FilenameStatePtr filename_state)
|
||||
{
|
||||
FilePage * page = Gtk::manage (new FilePage (session, profile_manager, this, page_counter, format_state, filename_state));
|
||||
FilePage * page = Gtk::manage (new FilePage (_session, profile_manager, this, page_counter, format_state, filename_state));
|
||||
page->CriticalSelectionChanged.connect (CriticalSelectionChanged.make_slot());
|
||||
insert_page (*page, page->get_tab_widget(), get_n_pages() - 1);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue