Strip trailing whitespace and fix other whitespace errors (e.g. space/tab mixing). Whitespace changes only.

Vimmers, try let c_space_errors = 1 in your .vimrc to highlight this kind of stuff in red.  I don't know the emacs equivalent...


git-svn-id: svn://localhost/ardour2/branches/3.0@5773 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2009-10-14 16:10:01 +00:00
parent 8c4ce1e2ce
commit bb9cc45cd2
730 changed files with 14946 additions and 14948 deletions

View file

@ -46,14 +46,14 @@ ExportFormatSelector::ExportFormatSelector () :
edit_button.signal_clicked().connect (sigc::hide_return (sigc::bind (sigc::mem_fun (*this, &ExportFormatSelector::open_edit_dialog), false)));
remove_button.signal_clicked().connect (sigc::mem_fun (*this, &ExportFormatSelector::remove_format));
new_button.signal_clicked().connect (sigc::mem_fun (*this, &ExportFormatSelector::add_new_format));
/* Format combo */
format_list = Gtk::ListStore::create (format_cols);
format_combo.set_model (format_list);
format_combo.pack_start (format_cols.label);
format_combo.set_active (0);
format_combo.signal_changed().connect (sigc::mem_fun (*this, &ExportFormatSelector::update_format_combo));
}
@ -67,7 +67,7 @@ ExportFormatSelector::set_state (ARDOUR::ExportProfileManager::FormatStatePtr co
{
session = session_;
state = state_;
update_format_list ();
}
@ -97,7 +97,7 @@ ExportFormatSelector::update_format_list ()
if (format_combo.get_active_row_number() == -1) {
format_combo.set_active (0);
}
select_format (format_to_select);
}
@ -111,7 +111,7 @@ ExportFormatSelector::select_format (FormatPtr f)
break;
}
}
CriticalSelectionChanged();
}
@ -119,7 +119,7 @@ void
ExportFormatSelector::add_new_format ()
{
FormatPtr new_format = state->format = NewFormat (state->format);
if (open_edit_dialog (true) != Gtk::RESPONSE_APPLY) {
remove_format();
if (state->list->empty()) {
@ -163,7 +163,7 @@ ExportFormatSelector::update_format_combo ()
edit_button.set_sensitive (false);
remove_button.set_sensitive (false);
}
CriticalSelectionChanged();
}