diff options
Diffstat (limited to 'src/gui/LoadPatchWindow.cpp')
-rw-r--r-- | src/gui/LoadPatchWindow.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/gui/LoadPatchWindow.cpp b/src/gui/LoadPatchWindow.cpp index c4229f61..7d1f62bb 100644 --- a/src/gui/LoadPatchWindow.cpp +++ b/src/gui/LoadPatchWindow.cpp @@ -40,7 +40,6 @@ using namespace Raul; namespace Ingen { namespace GUI { - LoadPatchWindow::LoadPatchWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& xml) : Gtk::FileChooserDialog(cobject) , _merge_ports(false) @@ -95,7 +94,6 @@ LoadPatchWindow::LoadPatchWindow(BaseObjectType* cobject, const Glib::RefPtr<Gno } } - void LoadPatchWindow::present(SharedPtr<PatchModel> patch, bool import, GraphObject::Properties data) { @@ -110,7 +108,6 @@ LoadPatchWindow::present(SharedPtr<PatchModel> patch, bool import, GraphObject:: Gtk::Window::present(); } - /** Sets the patch model for this window and initializes everything. * * This function MUST be called before using the window in any way! @@ -124,7 +121,6 @@ LoadPatchWindow::set_patch(SharedPtr<PatchModel> patch) _poly_spinbutton->set_value(patch->internal_poly()); } - void LoadPatchWindow::on_show() { @@ -133,21 +129,18 @@ LoadPatchWindow::on_show() Gtk::FileChooserDialog::on_show(); } - void LoadPatchWindow::merge_ports_selected() { _merge_ports = true; } - void LoadPatchWindow::insert_ports_selected() { _merge_ports = false; } - void LoadPatchWindow::ok_clicked() { @@ -202,7 +195,6 @@ LoadPatchWindow::ok_clicked() hide(); } - void LoadPatchWindow::cancel_clicked() { @@ -210,7 +202,6 @@ LoadPatchWindow::cancel_clicked() hide(); } - Raul::Symbol LoadPatchWindow::symbol_from_filename(const Glib::ustring& filename) { @@ -219,7 +210,6 @@ LoadPatchWindow::symbol_from_filename(const Glib::ustring& filename) return Raul::Symbol::symbolify(symbol_str); } - Raul::Symbol LoadPatchWindow::avoid_symbol_clash(const Raul::Symbol& symbol) { @@ -235,7 +225,6 @@ LoadPatchWindow::avoid_symbol_clash(const Raul::Symbol& symbol) } } - void LoadPatchWindow::selection_changed() { @@ -252,6 +241,5 @@ LoadPatchWindow::selection_changed() } } - } // namespace GUI } // namespace Ingen |