From dfad81a3c8aee40a515f0ecefb0180a86368b54a Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 23 Feb 2013 20:07:09 +0000 Subject: Remove Raul::fmt wrapper, the last vestige of boost dependency for Raul. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5077 a436a847-0d15-0410-975c-d299462d15a1 --- src/gui/GraphCanvas.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/gui/GraphCanvas.cpp') 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 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 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()); } } -- cgit v1.2.1