summaryrefslogtreecommitdiffstats
path: root/src/gui/GraphTreeWindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/GraphTreeWindow.cpp')
-rw-r--r--src/gui/GraphTreeWindow.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/gui/GraphTreeWindow.cpp b/src/gui/GraphTreeWindow.cpp
index 2edf8a44..7d00b0f5 100644
--- a/src/gui/GraphTreeWindow.cpp
+++ b/src/gui/GraphTreeWindow.cpp
@@ -205,8 +205,7 @@ GraphTreeWindow::graph_property_changed(const URI& key,
Gtk::TreeModel::Row row = *i;
row[_graph_tree_columns.enabled_col] = value.get<int32_t>();
} else {
- _app->log().error(fmt("Unable to find graph %1%\n")
- % graph->path());
+ _app->log().error("Unable to find graph %1%\n", graph->path());
}
}
_enable_signal = true;
@@ -224,8 +223,7 @@ GraphTreeWindow::graph_moved(SPtr<GraphModel> graph)
Gtk::TreeModel::Row row = *i;
row[_graph_tree_columns.name_col] = graph->symbol().c_str();
} else {
- _app->log().error(fmt("Unable to find graph %1%\n")
- % graph->path());
+ _app->log().error("Unable to find graph %1%\n", graph->path());
}
_enable_signal = true;