summaryrefslogtreecommitdiffstats
path: root/src/gui/LoadPatchWindow.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-02-17 20:40:48 +0000
committerDavid Robillard <d@drobilla.net>2011-02-17 20:40:48 +0000
commit8ecf0ff34b126f56dd06d6febf7046c0e98fb87e (patch)
tree8def815f7a24417148313f304bc6ad2051983056 /src/gui/LoadPatchWindow.cpp
parente668b8c846175f90cf22b456c5e5a4cc85410da4 (diff)
downloadingen-8ecf0ff34b126f56dd06d6febf7046c0e98fb87e.tar.gz
ingen-8ecf0ff34b126f56dd06d6febf7046c0e98fb87e.tar.bz2
ingen-8ecf0ff34b126f56dd06d6febf7046c0e98fb87e.zip
Remove deprecated Om patch loading code (resolve ticket #32).
Om patch loading is better achieved with a script than trying to maintain this functionality in ingen (and the associated dead code maintenance and protocol headaches). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2984 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/LoadPatchWindow.cpp')
-rw-r--r--src/gui/LoadPatchWindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/LoadPatchWindow.cpp b/src/gui/LoadPatchWindow.cpp
index 882f1368..81066a8c 100644
--- a/src/gui/LoadPatchWindow.cpp
+++ b/src/gui/LoadPatchWindow.cpp
@@ -175,7 +175,7 @@ LoadPatchWindow::ok_clicked()
symbol = _patch->symbol();
}
- App::instance().loader()->load_patch(true, get_uri(), Path("/"),
+ App::instance().loader()->load_patch(true, get_uri(),
parent, symbol, _initial_data);
} else {
@@ -193,7 +193,7 @@ LoadPatchWindow::ok_clicked()
symbol = avoid_symbol_clash(symbol);
- App::instance().loader()->load_patch(false, *i, Path("/"),
+ App::instance().loader()->load_patch(false, *i,
_patch->path(), symbol, _initial_data);
}
}