summaryrefslogtreecommitdiffstats
path: root/src/gui/LoadPatchWindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/LoadPatchWindow.cpp')
-rw-r--r--src/gui/LoadPatchWindow.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/gui/LoadPatchWindow.cpp b/src/gui/LoadPatchWindow.cpp
index 75c0b4d8..68d51d2d 100644
--- a/src/gui/LoadPatchWindow.cpp
+++ b/src/gui/LoadPatchWindow.cpp
@@ -15,21 +15,22 @@
*/
#include <cassert>
+
#include <boost/optional.hpp>
#include <glibmm/miscutils.h>
+
#include "ingen/Interface.hpp"
-#include "ingen/shared/LV2URIMap.hpp"
+#include "ingen/client/ClientStore.hpp"
#include "ingen/client/NodeModel.hpp"
#include "ingen/client/PatchModel.hpp"
-#include "ingen/client/ClientStore.hpp"
#include "ingen/shared/runtime_paths.hpp"
+
#include "App.hpp"
+#include "Configuration.hpp"
#include "LoadPatchWindow.hpp"
#include "PatchView.hpp"
-#include "Configuration.hpp"
#include "ThreadedLoader.hpp"
-using boost::optional;
using namespace std;
using namespace Raul;
@@ -161,8 +162,8 @@ LoadPatchWindow::ok_clicked()
if (_import) {
// If unset load_patch will load value
- optional<Path> parent;
- optional<Symbol> symbol;
+ boost::optional<Path> parent;
+ boost::optional<Symbol> symbol;
if (!_patch->path().is_root()) {
parent = _patch->path().parent();
symbol = _patch->symbol();