mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-01 11:27:45 +01:00
Use PBD::string_to<bool> in AudioPlaylist class
This commit is contained in:
parent
8e07e4bd68
commit
603d944530
1 changed files with 1 additions and 1 deletions
|
|
@ -495,7 +495,7 @@ AudioPlaylist::load_legacy_crossfades (const XMLNode& node, int version)
|
|||
XMLProperty const * p = (*i)->property (X_("active"));
|
||||
assert (p);
|
||||
|
||||
if (!string_is_affirmative (p->value())) {
|
||||
if (!string_to<bool> (p->value())) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue