13
0

Whitespace.

git-svn-id: svn://localhost/ardour2/branches/3.0@5876 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2009-10-22 22:38:53 +00:00
parent 106b728d34
commit 862bbd4569
2 changed files with 30 additions and 30 deletions

View File

@ -580,7 +580,7 @@ Mixer_UI::set_all_strips_visibility (bool yn)
void
Mixer_UI::set_all_audio_visibility (int tracks, bool yn)
{
TreeModel::Children rows = track_model->children();
TreeModel::Children rows = track_model->children();
TreeModel::Children::iterator i;
no_track_list_redisplay = true;

View File

@ -844,9 +844,9 @@ Route::add_processor_from_xml_2X (const XMLNode& node, int version, ProcessorLis
if ((prop = node.property ("type")) != 0) {
if (prop->value() == "ladspa" || prop->value() == "Ladspa" ||
prop->value() == "lv2" ||
prop->value() == "vst" ||
prop->value() == "audiounit") {
prop->value() == "lv2" ||
prop->value() == "vst" ||
prop->value() == "audiounit") {
processor.reset (new PluginInsert (_session, node));
@ -1890,7 +1890,7 @@ Route::_set_state_2X (const XMLNode& node, int version)
/* there is a note in IO::set_state_2X() about why we have to call
this directly.
*/
*/
_input->set_state_2X (*child, version, true);
_output->set_state_2X (*child, version, false);
@ -1965,11 +1965,11 @@ Route::_set_state_2X (const XMLNode& node, int version)
if ((equal = remaining.find_first_of ('=')) == string::npos || equal == remaining.length()) {
error << string_compose (_("badly formed order key string in state file! [%1] ... ignored."), remaining)
<< endmsg;
<< endmsg;
} else {
if (sscanf (remaining.substr (equal+1).c_str(), "%ld", &n) != 1) {
error << string_compose (_("badly formed order key string in state file! [%1] ... ignored."), remaining)
<< endmsg;
<< endmsg;
} else {
set_order_key (remaining.substr (0, equal), n);
}