summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Fletcher <colin.m.fletcher@googlemail.com>2014-05-27 15:48:07 +0100
committerColin Fletcher <colin.m.fletcher@googlemail.com>2014-06-12 23:20:05 +0100
commitcc2e6aeac32f963ac4215c157d562278a5013b71 (patch)
treee434854a7234910de103ee75ee50ac997fb298ea
parentf0dbd6c0855e76a87d97a1774f2e97a5b9211ae6 (diff)
Remove unused function
Remove the unused ExportFileNotebook::get_nth_format_name()
-rw-r--r--gtk2_ardour/export_file_notebook.cc10
-rw-r--r--gtk2_ardour/export_file_notebook.h3
2 files changed, 0 insertions, 13 deletions
diff --git a/gtk2_ardour/export_file_notebook.cc b/gtk2_ardour/export_file_notebook.cc
index b34d3aab09..b90aa463bc 100644
--- a/gtk2_ardour/export_file_notebook.cc
+++ b/gtk2_ardour/export_file_notebook.cc
@@ -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 ()
{
diff --git a/gtk2_ardour/export_file_notebook.h b/gtk2_ardour/export_file_notebook.h
index 7a021057ef..52c87c3717 100644
--- a/gtk2_ardour/export_file_notebook.h
+++ b/gtk2_ardour/export_file_notebook.h
@@ -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: