summaryrefslogtreecommitdiffstats
path: root/src/client/PluginUI.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-02-23 20:07:09 +0000
committerDavid Robillard <d@drobilla.net>2013-02-23 20:07:09 +0000
commitdfad81a3c8aee40a515f0ecefb0180a86368b54a (patch)
tree0ddf00406358c4febaf18fed32e97cdd9c2f956c /src/client/PluginUI.cpp
parent6b6cb56b2ceab509569bfca247f108f2be5e25c0 (diff)
downloadingen-dfad81a3c8aee40a515f0ecefb0180a86368b54a.tar.gz
ingen-dfad81a3c8aee40a515f0ecefb0180a86368b54a.tar.bz2
ingen-dfad81a3c8aee40a515f0ecefb0180a86368b54a.zip
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
Diffstat (limited to 'src/client/PluginUI.cpp')
-rw-r--r--src/client/PluginUI.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/PluginUI.cpp b/src/client/PluginUI.cpp
index 2bee4249..b9212174 100644
--- a/src/client/PluginUI.cpp
+++ b/src/client/PluginUI.cpp
@@ -42,7 +42,7 @@ lv2_ui_write(SuilController controller,
const BlockModel::Ports& ports = ui->block()->ports();
if (port_index >= ports.size()) {
ui->world()->log().error(
- Raul::fmt("%1% UI tried to write to invalid port %2%\n")
+ fmt("%1% UI tried to write to invalid port %2%\n")
% ui->block()->plugin()->uri().c_str() % port_index);
return;
}
@@ -55,7 +55,7 @@ lv2_ui_write(SuilController controller,
if (format == 0) {
if (buffer_size != 4) {
ui->world()->log().error(
- Raul::fmt("%1% UI wrote corrupt float with bad size\n")
+ fmt("%1% UI wrote corrupt float with bad size\n")
% ui->block()->plugin()->uri().c_str());
return;
}
@@ -79,7 +79,7 @@ lv2_ui_write(SuilController controller,
} else {
ui->world()->log().warn(
- Raul::fmt("Unknown value format %1% from LV2 UI\n")
+ fmt("Unknown value format %1% from LV2 UI\n")
% format % ui->block()->plugin()->uri().c_str());
}
}