summaryrefslogtreecommitdiffstats
path: root/src/gui/LoadRemotePatchWindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/LoadRemotePatchWindow.cpp')
-rw-r--r--src/gui/LoadRemotePatchWindow.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/gui/LoadRemotePatchWindow.cpp b/src/gui/LoadRemotePatchWindow.cpp
index 809bea42..4e73690a 100644
--- a/src/gui/LoadRemotePatchWindow.cpp
+++ b/src/gui/LoadRemotePatchWindow.cpp
@@ -33,7 +33,6 @@ using namespace std;
namespace Ingen {
namespace GUI {
-
LoadRemotePatchWindow::LoadRemotePatchWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& xml)
: Dialog(cobject)
{
@@ -56,7 +55,6 @@ LoadRemotePatchWindow::LoadRemotePatchWindow(BaseObjectType* cobject, const Glib
_uri_entry->signal_changed().connect(sigc::mem_fun(this, &LoadRemotePatchWindow::uri_changed));
}
-
void
LoadRemotePatchWindow::present(SharedPtr<PatchModel> patch, GraphObject::Properties data)
{
@@ -90,7 +88,6 @@ LoadRemotePatchWindow::present(SharedPtr<PatchModel> patch, GraphObject::Propert
#endif
}
-
/** Sets the patch controller for this window and initializes everything.
*
* This function MUST be called before using the window in any way!
@@ -101,21 +98,18 @@ LoadRemotePatchWindow::set_patch(SharedPtr<PatchModel> patch)
_patch = patch;
}
-
void
LoadRemotePatchWindow::uri_changed()
{
_open_button->property_sensitive() = (_uri_entry->get_text().length() > 0);
}
-
void
LoadRemotePatchWindow::patch_activated(const Gtk::TreeModel::Path& path, Gtk::TreeViewColumn* col)
{
open_clicked();
}
-
void
LoadRemotePatchWindow::patch_selected()
{
@@ -127,7 +121,6 @@ LoadRemotePatchWindow::patch_selected()
}
}
-
void
LoadRemotePatchWindow::open_clicked()
{
@@ -146,13 +139,11 @@ LoadRemotePatchWindow::open_clicked()
hide();
}
-
void
LoadRemotePatchWindow::cancel_clicked()
{
hide();
}
-
} // namespace GUI
} // namespace Ingen