remove whitespace at eol
[goodguy/history.git] / cinelerra-5.1 / cinelerra / tracklist.C
index eb3642ce440ac6d1c7647e7ffff4bdbd79066e85..fd7c8a86bb86b3ff3d91e08e061a03c6f804fbcc 100644 (file)
@@ -2,21 +2,21 @@
 /*
  * CINELERRA
  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
- * 
+ *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
- * 
+ *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- * 
+ *
  */
 
 #include "intauto.h"
@@ -56,11 +56,11 @@ TrackList::get_playable_type(long position, int reverse, int data_type)
        Track *current_track;
        Patch *current_patch;
        Auto *current_auto;
-       
-       for(current_track = mwindow->tracks->first, 
-               current_patch = mwindow->patches->first; 
-               current_track && current_patch; 
-               current_track = current_track->next, 
+
+       for(current_track = mwindow->tracks->first,
+               current_patch = mwindow->patches->first;
+               current_track && current_patch;
+               current_track = current_track->next,
                current_patch = current_patch->next)
        {
                if(current_patch->play && current_track->data_type == data_type)
@@ -70,15 +70,15 @@ TrackList::get_playable_type(long position, int reverse, int data_type)
 // get auto right before position
                        if(reverse)
                        {
-                               if(current_auto && current_auto->position < position) 
+                               if(current_auto && current_auto->position < position)
                                        current_auto = current_auto->next;
                        }
                        else
                        {
-                               if(current_auto && current_auto->position > position) 
+                               if(current_auto && current_auto->position > position)
                                        current_auto = current_auto->previous;
                        }
-                       
+
                        if(!current_auto || current_auto->value == 1)
                                append((ATrack*)current_track);
                }
@@ -89,12 +89,12 @@ TrackList::get_recordable_type(int data_type)
 {
        Track *current_track;
        Patch *current_patch;
-       
-       for(current_track = tracks->first, current_patch = patches->first; 
-               current_track && current_patch; 
+
+       for(current_track = tracks->first, current_patch = patches->first;
+               current_track && current_patch;
                current_track = current_track->next, current_patch = current_patch->next)
        {
-               if(current_patch->record && current_track->data_type == TRACK_AUDIO) 
+               if(current_patch->record && current_track->data_type == TRACK_AUDIO)
                        append((ATrack*)current_track);
        }
 }