13
0

Fix some messed up code (spacey tabs).

(There is faar more of this... FIX YOUR EDITORS!)


git-svn-id: svn://localhost/ardour2/branches/3.0@8086 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2010-11-25 20:37:39 +00:00
parent c862d320ff
commit 8b68ed57ec
34 changed files with 1328 additions and 1332 deletions

View File

@ -749,7 +749,8 @@ ARDOUR_UI::check_memory_locking ()
if (ram == 0 || ((double) limits.rlim_cur / ram) < 0.75) {
MessageDialog msg (string_compose (_("WARNING: Your system has a limit for maximum amount of locked memory. "
MessageDialog msg (
string_compose (_("WARNING: Your system has a limit for maximum amount of locked memory. "
"This might cause %1 to run out of memory before your system "
"runs out of memory. \n\n"
"You can view the memory limit with 'ulimit -l', "

View File

@ -61,8 +61,8 @@ ARDOUR_UI::toggle_external_sync()
if (_session) {
if (_session->config.get_video_pullup() != 0.0f) {
if (_session->config.get_sync_source() == JACK) {
MessageDialog msg (_(
"It is not possible to use JACK as the the sync source\n\
MessageDialog msg (
_("It is not possible to use JACK as the the sync source\n\
when the pull up/down setting is non-zero."));
msg.run ();
return;
@ -428,7 +428,6 @@ ARDOUR_UI::parameter_changed (std::string p)
} else if (p == "secondary-clock-delta-edit-cursor") {
secondary_clock.set_is_duration (Config->get_secondary_clock_delta_edit_cursor());
}
}
void

View File

@ -790,7 +790,6 @@ Editor::add_sources (vector<string> paths, SourceList& sources, framepos_t& pos,
framepos_t rlen = 0;
for (vector<boost::shared_ptr<Region> >::iterator r = regions.begin(); r != regions.end(); ++r, ++n) {
boost::shared_ptr<AudioRegion> ar = boost::dynamic_pointer_cast<AudioRegion> (*r);
if (use_timestamp && ar) {

View File

@ -220,7 +220,6 @@ Editor::set_current_trimmable (boost::shared_ptr<Trimmable> t)
_trimmable = t;
set_canvas_cursor ();
}
}
void

View File

@ -54,7 +54,6 @@ EditorRouteGroups::EditorRouteGroups (Editor* e)
: EditorComponent (e)
, _all_group_active_button (_("No Selection = All Tracks"))
, _in_row_change (false)
{
_model = ListStore::create (_columns);
_display.set_model (_model);
@ -533,6 +532,5 @@ EditorRouteGroups::all_group_changed (const PropertyChange&)
} else {
_all_group_active_button.set_active (false);
}
}