summaryrefslogtreecommitdiffstats
path: root/src/gui/GraphCanvas.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/GraphCanvas.cpp')
-rw-r--r--src/gui/GraphCanvas.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/GraphCanvas.cpp b/src/gui/GraphCanvas.cpp
index 6c391d23..591c6fc9 100644
--- a/src/gui/GraphCanvas.cpp
+++ b/src/gui/GraphCanvas.cpp
@@ -240,7 +240,7 @@ GraphCanvas::build_plugin_class_menu(
const char* sub_label_str = lilv_node_as_string(lilv_plugin_class_get_label(c));
const char* sub_uri_str = lilv_node_as_string(lilv_plugin_class_get_uri(c));
if (ancestors.find(sub_uri_str) != ancestors.end()) {
- _app.log().warn(Raul::fmt("Infinite LV2 class recursion: %1% <: %2%\n")
+ _app.log().warn(fmt("Infinite LV2 class recursion: %1% <: %2%\n")
% class_uri_str % sub_uri_str);
return 0;
}
@@ -501,7 +501,7 @@ GraphCanvas::connection(SPtr<const ArcModel> arc)
if (tail && head) {
new GUI::Arc(*this, arc, tail, head, tail->get_fill_color());
} else {
- _app.log().error(Raul::fmt("Unable to find ports to connect %1% => %2%\n")
+ _app.log().error(fmt("Unable to find ports to connect %1% => %2%\n")
% arc->tail_path() % arc->head_path());
}
}
@@ -515,7 +515,7 @@ GraphCanvas::disconnection(SPtr<const ArcModel> arc)
if (src && dst) {
remove_edge(src, dst);
} else {
- _app.log().error(Raul::fmt("Unable to find ports to disconnect %1% => %2%\n")
+ _app.log().error(fmt("Unable to find ports to disconnect %1% => %2%\n")
% arc->tail_path() % arc->head_path());
}
}