This commit is contained in:
Robin Gareus
2016-01-09 01:01:18 +01:00
parent ba450aaeaa
commit 5a047fcd15

View File

@@ -122,7 +122,7 @@ Plugin::remove_preset (string name)
{
Plugin::PresetRecord const * p = preset_by_label (name);
if (!p->user) {
PBD::error << _("Cannot remove plugin factory preset.") << PBD::endmsg;
PBD::error << _("Cannot remove plugin factory preset.") << std::endmsg;
return;
}
@@ -140,7 +140,7 @@ Plugin::PresetRecord
Plugin::save_preset (string name)
{
if (preset_by_label (name)) {
PBD::error << _("Preset with given name already exists.") << PBD::endmsg;
PBD::error << _("Preset with given name already exists.") << std::endmsg;
return Plugin::PresetRecord ();
}