13
0

Remove unused function

Remove the unused ExportFileNotebook::get_nth_format_name()
This commit is contained in:
Colin Fletcher 2014-05-27 15:48:07 +01:00
parent f0dbd6c085
commit cc2e6aeac3
2 changed files with 0 additions and 13 deletions

View File

@ -115,16 +115,6 @@ ExportFileNotebook::update_example_filenames ()
}
}
std::string
ExportFileNotebook::get_nth_format_name (uint32_t n)
{
FilePage * page;
if ((page = dynamic_cast<FilePage *> (get_nth_page (n - 1)))) {
return page->get_format_name();
}
return "";
}
void
ExportFileNotebook::add_new_file_page ()
{

View File

@ -38,11 +38,8 @@ class ExportFileNotebook : public Gtk::Notebook, public ARDOUR::SessionHandlePtr
void set_session_and_manager (ARDOUR::Session * s, boost::shared_ptr<ARDOUR::ExportProfileManager> manager);
void sync_with_manager ();
void update_example_filenames();
std::string get_nth_format_name (uint32_t n);
sigc::signal<void> CriticalSelectionChanged;
private: